hrcservice
01-21-2009, 04:52 PM
>> Hello,
>
> I've managed to setup a subdomain to use as a test link just fine
> using the instructions emailed below. I would like more information
> regarding the ISAPI Rewrite module. I have the specific rule that I
> need to install; however, I'm not sure exactly where to put it. Here's the rule:
>
> <?xml version="1.0" encoding="UTF-8"?> <configuration>
> <system.webServer>
> <rewrite>
> <rules>
> <rule name="Imported Rule 1" stopProcessing="true">
> <match url="^.*$" />
> <conditions logicalGrouping="MatchAny">
> <add input="{REQUEST_FILENAME}"
> matchType="IsFile" pattern=""
> ignoreCase="false" />
> <add input="{REQUEST_FILENAME}"
> matchType="IsDirectory"
> pattern="" ignoreCase="false" />
> </conditions>
> <action type="None" />
> </rule>
> <rule name="Imported Rule 2" stopProcessing="true">
> <match url="^.*$" />
> <action type="Rewrite" url="index.php" />
> </rule>
> </rules>
> </rewrite>
> </system.webServer>
> </configuration>
>
> I've managed to setup a subdomain to use as a test link just fine
> using the instructions emailed below. I would like more information
> regarding the ISAPI Rewrite module. I have the specific rule that I
> need to install; however, I'm not sure exactly where to put it. Here's the rule:
>
> <?xml version="1.0" encoding="UTF-8"?> <configuration>
> <system.webServer>
> <rewrite>
> <rules>
> <rule name="Imported Rule 1" stopProcessing="true">
> <match url="^.*$" />
> <conditions logicalGrouping="MatchAny">
> <add input="{REQUEST_FILENAME}"
> matchType="IsFile" pattern=""
> ignoreCase="false" />
> <add input="{REQUEST_FILENAME}"
> matchType="IsDirectory"
> pattern="" ignoreCase="false" />
> </conditions>
> <action type="None" />
> </rule>
> <rule name="Imported Rule 2" stopProcessing="true">
> <match url="^.*$" />
> <action type="Rewrite" url="index.php" />
> </rule>
> </rules>
> </rewrite>
> </system.webServer>
> </configuration>