WordPress Multisite issue on IIS

  • Save the back up of the current wp-config.php file from the site root folder.
  • Copy and replace current IIS rewrite code as mentioned below in the wp-config.php 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-]+/)?files/(.+)" ignoreCase="false" />

                    <action type="Rewrite" url="wp-includes/ms-files.php?file={R:2}" appendQueryString="false" />

                </rule>

                <rule name="WordPress Rule 3" 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 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" />

                    </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:2}" />

                </rule>

                <rule name="WordPress Rule 6" stopProcessing="true">

                    <match url="^([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" />

                    <action type="Rewrite" url="{R:2}" />

                </rule>

                <rule name="WordPress Rule 7" stopProcessing="true">

                    <match url="." ignoreCase="false" />

                    <action type="Rewrite" url="index.php" />

                </rule>

            </rules>

        </rewrite>

    </system.webServer>


    </configuration>
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution