我有两个不同的网址:mywebsite.com和myotherdomain.com
mywebsite.com是访问我网站主页的默认网址。当有人输入myotherdomain.com时,我希望它转到mywebsite.com/other
这可以使用.htaccess吗?
答案 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可能会有所帮助。