I am using Windows Server 2008
I have added a only rule to the module
<rule name="ARule" stopProcessing="true">
<match url="a([0-9]*)" />
<action type="Rewrite" url="index.php?a=(R:1)" />
</rule>
It runs smooth.
I then add 2 conditions and result the following.
<rule name="ARule" stopProcessing="true">
<match url="a([0-9]*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?a=(R:1)" />
</rule>
The page show "500 - Internal server error". The trace page log the following.
CONDITIONS_EVALUATION_START LogicalGrouping="MatchAll"
CONDITIONS_EVALUATION_END Succeeded="false"
This condition can be run on a local machine directory without problem. However the conidtion failed to run on a network path.
Anyone can help? Thanks