Problem:
I'm using .htaccess to make a subfolder the main folder for my primary domain. Everything seems to be working fine, except I noticed that when I type a URL directly, such as "primarydomain.com/blog/", it redirects to "http://primarydomain.com/primarydomain.com/blog/".
Details:
Currently I have multiple domains under the same webhosting account. This webhost originally organized my files as:
- public_html/ for all the webfiles for my primary domain name (primarydomain.com)
- public_html/domain2.com/ for all the webfiles for one of my other domains
- public_html/domain3.com/ for all the webfiles for another one of my domains
Using .htaccess and RewriteRule, I've been able to re-organize my files for peace of mind into:
- public_html/primarydomain.com/
- public_html/domain2.com/
- public_html/domain3.com/
...with said .htaccess file in that root directory:
- public_html/.htaccess
This .htaccess file is as follows:
<IfModule mod_rewrite.c>
RewriteEngine On
# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?primarydomain.com$
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/primarydomain.com/
# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /primarydomain.com/$1
# Change yourdomain.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?primarydomain.com$
RewriteRule ^(/)?$ primarydomain.com/ [L]
# this last line I commented out because it was causing all the links (direct links) to all my files to hit 404 errors
# I have included this line as a reference because it was in the original tutorial I used
# RewriteRule ^(.*)(/)?$ primarydomain.com/$1 [L]
</IfModule>
The tutorial I used: http://support.lunarpages.com/knowledge_bases/article/549 (I don't use lunarpages, but the structure is the same)
I'm not sure what I'm doing wrong. Any hints/tips would be most appreciated. Thank you!