Trying to ignore a subdomain that existed before I activated multisite
-
Hello,
I enabled multisite on a domain with one subdomain which was not a part of the WordPress installation and now that subdomain isn’t showing.
Its name is love. I tried to exclude it via .htaccess. Here’s the code, am I doing something wrong?
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
RewriteCond %{HTTP_HOST} love.iva-is.me
RewriteCond %{REQUEST_URI} !love/
RewriteRule ^(.*)$ love/$1 [L]Thanks for any help you can provide.
- The topic ‘Trying to ignore a subdomain that existed before I activated multisite’ is closed to new replies.