Posts: 18
Threads: 3
Joined: Aug 2012
I know it's a shot in the dark but i really was wondering if someone could help me out to try and figure out some Rules that will work.
I'd like to use fancy urls but cannot seem to get the rules right. I've seen a plugin for web.config but cannot get it to work. Always get Error 500 when I use a web.config on my Windows Host.
I have Getsimple 3.2.3 installed and a site configured to use Fancy Urls.
Has anyone experience in trying to get this to work?
Thank you in advance.
Keeping it simple means making progress!!
Posts: 321
Threads: 15
Joined: Feb 2012
Then I have a IIS webserver too
but frankly I never tried to use fancy-urls because it's too tricky to me.
Anyway about your problem
take a look at this...
http://iirf.codeplex.com/discussions/277490
it is for joomla but you could converti it
Let me know
(2013-11-01, 11:15:34)xrmarcis Wrote: I know it's a shot in the dark but i really was wondering if someone could help me out to try and figure out some Rules that will work.
I'd like to use fancy urls but cannot seem to get the rules right. I've seen a plugin for web.config but cannot get it to work. Always get Error 500 when I use a web.config on my Windows Host.
I have Getsimple 3.2.3 installed and a site configured to use Fancy Urls.
Has anyone experience in trying to get this to work?
Thank you in advance.
My website made with GetSimple CMS is
Arte & Società
www.artesocieta.eu
An indipendent website about Italian Contemporary Visual Arts
Posts: 16
Threads: 1
Joined: Mar 2014
Too late for the OP, but this is my web.config to get pretty urls working on IIS.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="rewriteurls" patternSyntax="Wildcard">
<match url="*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?id={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Posts: 321
Threads: 15
Joined: Feb 2012
Better Late Than Never =D
[quote='The_Shopkeeper' pid='43360' dateline='1393694469']
Too late for the OP, but this is my web.config to get pretty urls working on IIS.
My website made with GetSimple CMS is
Arte & Società
www.artesocieta.eu
An indipendent website about Italian Contemporary Visual Arts