• I recently upgraded one my WP blogs from 2x to 3x. Upon doing so, I lost my existing subdomain which is hosted on a separate IP and has no affiliation with WP. I have tried adding some rules to the .htaccess (though I’m no expert), but nothing has worked. Am I missing something or trying the wrong thing? I need to get this subdomain to show up, but am completely lost. Please help. =s

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

    (@dynamicpage)

    Ok…I have resolved my own problem. Here is the htaccess resolution:

    # BEGIN WordPress
    Options +FollowSymLinks
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    RewriteRule ^(subdomain\.)rootdomain\.com [L,QSA]
    </IfModule>
    # END WordPress

Viewing 1 replies (of 1 total)
  • The topic ‘3x upgrade broke existing subdomain’ is closed to new replies.