Godaddy Windows Shared Hosting web.config file permalink structure
-
I am using Godaddy shared hosting and whenever I change my permalink structure to post name I am getting this error whenever I access
https://www.domain.com/post-name
For example of errors you can see my page here
https://www.investland.com.au/faqs
I have changed the web.config file and still can not get it to work. Here is my config file starting with <configuration>
*************************************************************
<configuration>
<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/{R:0}” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>Any help would be greatly appreciated
- The topic ‘Godaddy Windows Shared Hosting web.config file permalink structure’ is closed to new replies.