SubSite/Dashboard Not Working on IIS 8
-
I have WP installed on IIS 8 for my company’s intranet. I just followed all instructions for changing from WP to WPMU and it went fine. I reactivated all the plugins, themes, plugins, etc…
The problem is, I cannot access the second site. I can’t access it’s dashboard either. I verified Pretty Permalinks, and I even did the steps LISTED HERE. I have also tried this from wpbeginner:
define('SUBDOMAIN_INSTALL', false);
line in wp-config.php file with
define('SUBDOMAIN_INSTALL', 'false');
None of these steps worked. I was hoping someone may have some insight. Here is my webconfig:
<?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="^intranet/([_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="^intranet/([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)" ignoreCase="false" /> <action type="Rewrite" url="intranet/I:/intranet/{R:1}" /> </rule> <rule name="WordPress Rule 5" stopProcessing="true"> <match url="^intranet/([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" /> <action type="Rewrite" url="intranet/I:/intranet/{R:2}" /> </rule> <rule name="WordPress Rule 6" stopProcessing="true"> <match url="." ignoreCase="false" /> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
I changed the Rule 5 back to R:2. If more information is needed, please ask. When I look at others webconfig, they only have the
match url="^"
whereas during my install, I haveurl="^intranet/"
<rule name="WordPress Rule 5" stopProcessing="true"> <match url="^intranet/([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" /> <action type="Rewrite" url="intranet/I:/intranet/{R:2}" />
- The topic ‘SubSite/Dashboard Not Working on IIS 8’ is closed to new replies.