Thanks.
I'd rather not have eukhost apply the settings, because there will be times when I want to change them frequently.
I am sure it should be possible with mod_rewrite, but I'm getting a 500 Internal Server Error. I have done some tests, as follows:
I have 2 addon domains, test and test1. Both directories (public_html/test and public_html/test1) contain an index page. The following rewrite rules in public_html/test/.htaccess will correctly show the test1 index page when visiting the ht*p://thesitename.com/test/
Code:
RewriteEngine On
RewriteRule ^(.*)$ /test1/$1 [L]
However, if I change this to a point to a subdirectory of test, as follows, I get a 500 Internal Server Error.
Code:
RewriteEngine On
RewriteRule ^(.*)$ /test/subdir/$1 [L]
An ideas any one?