ERRMSG: My wordpress through 404 error pages on all sub-pages

This is because of permalinks and the required changes not being applied to your web.config.
On unix hosts, you would adjust your .htaccess file to make permalinks work, on a Windows IIS server you will need to add the following lines of code to the web.config file in your web site's root folder between the system.webServer tags as shown below:

<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<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>

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

HOW TO: Protect my Wordpress from brute force attacks

With Wordpress becoming more and more widspread, hackers have been coming up with new methods to...

FAQ: Can I install wordpress on my ResellerChoice account?

Yes! Wordpress is fully supported and we offer an application installer for the latest version of...

HOW TO: Manually update Wordpress Core

A Wordpress core update may be needed in some cases such as failed automated updates,...