point multiple domain to single web hosting account
Posted
by
suriyan suresh
on Server Fault
See other posts from Server Fault
or by suriyan suresh
Published on 2011-02-24T14:58:58Z
Indexed on
2011/02/24
15:26 UTC
Read the original article
Hit count: 372
point multiple domain to single web hosting account using htaccess
i have used the following .htaccess file in my public_html directory
RewriteEngine on
RewriteCond %{HTTP_HOST} ^site1.org$ [OR]
RewriteCond %{HTTP_HOST} ^www.site1.org$
RewriteRule ^/?$ "/site1.org\/" [R=301,L]
directory structure
/public_html/site1.org/welcome.html
if i typed site1.org redirection works perfect but the URL will be http://site1.org/site1.org/welcome.html instead of http://site1.org/welcome.html
and the URL will be SEO Friendly
© Server Fault or respective owner