2011-05-23 133 views

回答

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会有所帮助。

相关问题