Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IIS Windows server using IIRF4 rewrite ISAPI
#3
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>
Reply


Messages In This Thread
RE: IIS Windows server using IIRF4 rewrite ISAPI - by The_Shopkeeper - 2014-03-02, 03:21:09



Users browsing this thread: 1 Guest(s)