• I just installed WordPress 4.2.4 with MULTISITE.
    I created a new site and get a 404 error.
    I have been reviewing the post and see people referencening the
    .htaccess file.

    I do not have this file in the root directory or anywhere.
    It is not present at all, but the main site is functioning fine?

    Any thoughts or ideas as to why the Worpress install did not create this file.
    I installed the main site through the Platform Installer 5.0 and enabled the MULTISITE after the fact.

    Also, need to mention wordpress is installed on a Windows Server 2012 running IIS.

Viewing 1 replies (of 1 total)
  • Thread Starter joshtate2001

    (@joshtate2001)

    My web.config

    <?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=”^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)” ignoreCase=”false” />
    <action type=”Rewrite” url=”{R:1}” />
    </rule>
    <rule name=”WordPress Rule 5″ stopProcessing=”true”>
    <match url=”^([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
    <action type=”Rewrite” url=”{R:2}” />
    </rule>
    <rule name=”WordPress Rule 6″ stopProcessing=”true”>
    <match url=”.” ignoreCase=”false” />
    <action type=”Rewrite” url=”index.php” />
    </rule>
    <rule name=”HTTP to HTTPS redirect” stopProcessing=”true”>
    <match url=”(.*)” />
    <conditions>
    <add input=”{HTTPS}” pattern=”off” ignoreCase=”true” />
    </conditions>
    <action type=”Redirect” redirectType=”Found” url=”https://{HTTP_HOST}/{R:1}” />
    </rule>
    </rules>
    </rewrite>
    <defaultDocument>
    <files>
    <add value=”index.php” />
    </files>
    </defaultDocument>
    </system.webServer>
    </configuration>

Viewing 1 replies (of 1 total)
  • The topic ‘Installed Multisite WordPress 4.2.4 – Getting 404’ is closed to new replies.