我有:
mydomain.com
www.mydomain.com
www.myotherdomain.com
所有指向一个Web主机,一切正常。 www.myotherdomain.com
由主机上的文件夹myotherdomain
提供。
我如何指出:
myotherdomain.com
到服务www.myotherdomain.com
的同一个文件夹?
答案 0 :(得分:0)
使用301重定向。
根据您的技术寻找最佳实施方案: http://www.webconfs.com/how-to-redirect-a-webpage.php
答案 1 :(得分:0)
您可以将“.htaccess”文件添加到您的网站文件夹(例如/ var / www / html)并添加以下内容
# For sites running on a port other than 80
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^/(.*) http://www.example.com:%{SERVER_PORT}/$1 [L,R]
# And for a site running on port 80
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://www.example.com/$1 [L,R]
有关详细信息,请访问here。