After changing permalinks page not found in server error fixed

Changing permalink error

When I was working with wordpress, it seems I needed to change Permalinks style to make my content more SEO friendly. After changing permalinks page not found in server-this kind of error was found. After searching over Internet I found an easy solution for you. If you are using windows IIS then open web.conf file. Then write the following code under rules tag:

<rule name="WordPress Rule" stopProcessing="true">
<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>

hope the above tips help you to resolve your issues

Add a Comment