views:

149

answers:

1

I am having a problem making a sub directory act as the public_html for my main domain, and getting a solution that works with that domains sub directories too.

Background

My hosting allows me to host multiple sites, which are all working great. I have set up a subfolder under my ~/public_html/ directory called /domains/, where I create a folder for each separate website. The folder structure on my server looks something like this:

  • public_html
    • domains
      • websiteone
      • websitetwo
      • websitethree
      • ...

This keeps my sites nice and tidy. The only issue was getting my "main domain" to fit into this system. It seems my main domain, is somehow tied to my account (or to Apache, or something), so I can't change the "document root" of this domain. I can define the document roots for any other domains ("Addon Domains") that I add in cPanel no problem. But the main domain is different.

The problem

I was told to edit the .htaccess file, to redirect the main domain to a subdirectory. This seemed to work great, and my site works fine on it's home/index page.

The problem I'm having is that if I try to navigate my browser to say the images folder (just for example) of my main site, like this:

www.yourmaindomain.com/images/

then it seems to ignore the redirect and shows the entire server directory in the url, like this:

www.yourmaindomain.com/domains/yourmaindomain/images/

It still actually shows the correct "Index of /images" page, and shows the list of all my images. It's just the "pretty" URL that's the problem.

Example of my .htaccess

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
RewriteCond %{REQUEST_URI} !^/domains/yourmaindomain/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /domains/yourmaindomain/$1

RewriteCond %{HTTP_HOST} ^(www.)?yourmaindomain.com$
RewriteRule ^(/)?$ domains/yourmaindomain/index.html [L]

Does this htaccess file look correct? I just need to make it so my main domain behaves like an addon domain, and it's subdirectories adhere to the redirect rules.

+1  A: 

Don't use mod_rewrite for that, use virtual hosts for that. I won't explain that here in detail, you'll find all the necessary information at the above link. (Hint: You'll need the name-based ones probably.)

You probably want to move your stuff out of ~/public_html/ to some more generic place like /var/www/ or /srv/www.

Besides that: Don't use .htaccess files on production.

Marian
Are virtual hosts possible on shared hosting?
TandemAdam
That depends on your shared hosting setup, you should ask your provider about that.
Marian
@Marian: "Besides that: Don't use .htaccess files on production" most poeple running theyr sites/apps on web shared hosting. .htaccess are very important to give people the power to change settings per user basis.
Marco Demajo
@Marco: Just wanted to say it, if he needs to use them he needs to use them. As the first sentence on the page I linked to says “In general, you should never use .htaccess files unless you don't have access to the main server configuration file.”
Marian