• Help, I’ve completed a WP Multisite subdomain install on root directory. A new site appears in network dashboard but browser can’t find the new site. whatsmydns.com recognizes the new site.

    .htaccess in public_html reads:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    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)$ $1 [L]
    RewriteRule . index.php [L]
    </IfModule>
    
    # END WordPress
Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    A new site appears in network dashboard but browser can’t find the new site.

    What’s the error look like? A browser error or is it WP formated?

Viewing 1 replies (of 1 total)
  • The topic ‘WP Multisite subdomain install, new site cannot be found in browser’ is closed to new replies.