Forum Moderators: phranque
I have a couple of domains pointing to the same web hosting space. What I'd link it for the "main" page for each domain to be different, without having to use subfolders if possible. So, for example
[domain1.com...] would display index1.php and [domain2.com...] would display index2.php
from there, they might well share other files and folders, its just the first page loaded I need to change at this stage.
Anyone help please? I have an .htaccess file but my changes so far have either stopped all pages working or have made no difference at all.
Thanks!
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)$
RewriteRule ^$ index.%2.html [L]
[domain1.com...] => /index.domain1.com.html
[domain1.com...] => /index.domain1.com.html
[domain2.com...] => /index.domain2.com.html
[subdomain.domain2.com...] => /index.subdomain.domain2.com.html
[subdomain.domain2.com...] => /index.subdomain.domain2.com.html