如何使用.htaccess将域名重定向到特定网页?

时间:2011-05-23 15:41:34

标签: .htaccess redirect dns

我有两个不同的网址:mywebsite.com和myotherdomain.com

mywebsite.com是访问我网站主页的默认网址。当有人输入myotherdomain.com时,我希望它转到mywebsite.com/other

这可以使用.htaccess吗?

1 个答案:

答案 0 :(得分:1)

myotherdomain.com上,您可以使用以下指令:

RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ http://mywebsite.com/other/$1

这也会将域名后面的内容附加到/other/,例如

myotherdomain.com/mypath/page

将被重写为

http://mywebsite.com/other/mypath/page

顺便说一句,these Apache docs可能会有所帮助。