• Resolved brescreations

    (@brescreations)


    Apparently my subdomains aren’t working with my MutliSite setup. They are configured properly (Per hostgator)but dont seem to wanna point to the right WP page.
    I think I can pretty much rule out DNS propagation as a cause since its been over 24 hours.
    This is my 1st experience with this.. I come from the design end… far end.
    Do I need to do (another) reinstall of wp? Or can I just back up to deleting the wildcard & subdomains?
    Thanks.
    Site is at bloggingwithfamily.com
    .htaccess
    <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>
    wp-config.php
    define(‘WP_DEBUG’, false);
    define(‘WP_ALLOW_MULTISITE’, true);
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, true);
    define(‘DOMAIN_CURRENT_SITE’, ‘bloggingwithfamily.com’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    define( ‘SUNRISE’, ‘on’ );

    Apache log is clean

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘wordpress incorrectly receiving wildcard-when to throw in the towel?’ is closed to new replies.