![]() |
IIS Windows server using IIRF4 rewrite ISAPI - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5) +--- Thread: IIS Windows server using IIRF4 rewrite ISAPI (/showthread.php?tid=5329) |
IIS Windows server using IIRF4 rewrite ISAPI - xrmarcis - 2013-11-01 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. RE: IIS Windows server using IIRF4 rewrite ISAPI - D.O. - 2013-11-01 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. RE: IIS Windows server using IIRF4 rewrite ISAPI - The_Shopkeeper - 2014-03-02 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> RE: IIS Windows server using IIRF4 rewrite ISAPI - D.O. - 2014-03-02 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. |