Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • For IIS ..replace below with web.config file

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <system.webServer>
        <rewrite>
          <rules>
            <rule name="WordPress Rule 1" stopProcessing="true">
              <match url="^index\.php$" ignoreCase="false" />
              <action type="None" />
            </rule>
            <rule name="WordPress Rule 2" stopProcessing="true">
              <match url="^([_0-9a-zA-Z-]+/)?wp-admin$" ignoreCase="false" />
              <action type="Redirect" url="{R:1}wp-admin/" redirectType="Permanent" />
            </rule>
            <rule name="WordPress Rule 3" stopProcessing="true">
              <match url="^" ignoreCase="false" />
              <conditions logicalGrouping="MatchAny">
                <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
              </conditions>
              <action type="None" />
            </rule>
            <rule name="WordPress Rule 4" stopProcessing="true">
              <match url="^" ignoreCase="false" />
              <conditions logicalGrouping="MatchAny">
                <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
                <add input="{URL}" pattern="([a-zA-Z0-9\./_-]+)\.axd" />
              </conditions>
              <action type="None" />
            </rule>
            <rule name="WordPress Rule 5" stopProcessing="true">
              <match url="^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*)" ignoreCase="false" />
              <action type="Rewrite" url="{R:1}" />
            </rule>
            <rule name="WordPress Rule 6" stopProcessing="true">
              <match url="." ignoreCase="false" />
              <action type="Rewrite" url="index.php" />
            </rule>
          </rules>
        </rewrite>
        <httpRedirect enabled="false" destination="http://www.yourdomain.com" />
      </system.webServer>
    </configuration>
    Thread Starter yoitsabhi

    (@yoitsabhi)

    Done….

Viewing 2 replies - 1 through 2 (of 2 total)