Pretty Permalink Wordpress structure not running on Godaddy host With Windows hosting and IIS server

enter image description here

The picture shows my problem. Go through many blogs, support for Godaddy, stack overflow problems. TELL THIS PROBLEM FROM ONE MONTH, so finally the Stack community will help.

There is no web.config file in my root folder, but the .htaccess file that does'nt changes affects permalinks. what should I do to create such a permalink structure www.example.com/category/postname as my current permalink structure is http://www.example.com/?page_id=104 Godaddy hosting server information with hosting windows enviornment and iis 7 server. Godaddy does not know about this in the help center.

+4
1

web.config WordPress ( , .htaccess), web.config:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
            <rule name="wordpress" 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>

WordPress URL Rewrite IIS.

+24

All Articles