Forum Replies Created

Viewing 1 replies (of 1 total)
  • Help, I’m having a similar issue with WP Multisite subdomain install. 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)