I figured it out!
First, to get permalinks to work on Windows with the 5.03 version of WordPress, you have to install the URL Rewrite module from Microsoft.
Then, you have to change the web.config file in the root wordpress directory with this within side the <rules></rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^index\.php$" ignoreCase="false"/>
<action type="None"/>
</rule>
<rule name="Redirect Image to HTTP" stopProcessing="true">
<match url=".*\.(gif|jpg|jpeg|png|css|js)$" ignoreCase="true"/>
<action type="Rewrite" url="{R:0}"/>
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="." ignoreCase="false"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true"/>
</conditions>
<action type="Rewrite" url="/index.php"/>
</rule>
To see the source for my discovery, go to:
https://stackoverflow.com/questions/32349542/wordpress-500-url-rewrite-module-error
-
This reply was modified 5 years, 10 months ago by Michael C.