• Hi,

    My website is skintnation.com

    Installed Multisite however when I set up a subdomain for example test.skintnation.com, when I click on Dashboard, it just goes to a page that says “page not found”

    I followed all the instructions regarding wp-config and .htaccess. My .htaccess file looks like this:

    addhandler x-httpd-php5-cgi .php
    
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ wp/$1 [L]
    RewriteRule . index.php [L]
    
    # END WordPress

    When I set up a subdomain like test.skintnation.com do I also need to set a subdomain on my hosting as well?

    Any help would be much appreciated thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can't access subdomain Dashboard’ is closed to new replies.