custom permalinks show 404 page
-
Hello, I’m using plesk windows as control panel on vps server. installed wordpress newest version and when I change permalinks to custom, different than “plain”, post, category links show 404 page. Tried a lot of configuration of my web.config file, but nothing worked.
current web.config file script:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”WordPress: http://mysite.com” 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”/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>
The topic ‘custom permalinks show 404 page’ is closed to new replies.