I'm attempting to fix some annoyances with my current shared host configuration, but I'm having a few issues getting everything set up as I want it.
Currently, I have the following folder structure:
/
/.htaccess
/example
/example1
/example2
/example3
On the shared host, the primary domain is automatically set up to point to the root directory. In an effort to point the primary domain to a subdomain, I added the following to my root file's .htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L]
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$
RewriteCond %{REQUEST_URI} !^/example/
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /example/$1
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ example/ [L]
This properly rewrites the URL so that going to example.com displays the content from the /example/ subdirectory. The problem is that subdirectories of the root are not being rewritten in the same way, which is not the functionality that I was hoping to achieve. Example:
http://www.example.com/ = /example
http://www.example.com/example/ = /example
http://www.example.com/example1/ = /example1
http://www.example.com/example2/ = /example2
http://www.example.com/example3/ = /example3
What I want to happen is the following:
http://www.example.com/ = /example
http://www.example.com/example/ = /example/example
http://www.example.com/example1/ = /example/example1
http://www.example.com/example2/ = /example/example2
http://www.example.com/example3/ = /example/example3
My understanding of what should happen is as follows:
- Request for http://www.example.com received.
- First condition fails to match, HTTP_HOST does not match ^example.com$
- Second condition: matches ^www.example.com
- Third condition: no REQUEST_URI, so it matches not ^/example/
- Fourth and fifth: I've tried with and without these, but it didn't seem to change the result. My understanding is that if those lines are uncommented, I would see the unwanted before I'm having right now (if the filename and directory exist, the rewrite would not take place).
- Rewrite the request to example.com/example/
- Sixth condition: match the URL to a specific domain.
- Always rewrite to use the /example/ subdirectory for this URL.
This does appear to work, but if I try to go to http://www.example.com/example2/, I get the problems. Since the REQUEST_URI doesn't match /example/, my thought was that it should be rewriting to /example/example2, but that obviously doesn't happen.
I don't have access to the Apache configuration or the ability to set up VirtualHosts, so I'm hoping there's some way that I can do this with .htaccess rules. Any insight into how I'm over-complicating this simple task would be extremely helpful.