我需要在我的 .htaccess 文件中设置一个指令来重定向,如下所示:
来自http://mydomain.com/internal/
到http://myotherdomain.com/internal/
有人可以帮忙吗?
谢谢
我的代码——产生 500 内部服务器错误
//Rewrite to www
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain.com/internal[nc]
RewriteRule ^(.*)$ http://myotherdomain.com/internal/$1 [r=301,nc]