我有一个 ExpressionEngine 安装,它正在运行 2 个网站。
由于我添加了一个指向第二个站点的域,因此我需要更新旧链接: http: //mysite.com/othersite以重定向到http://othersite.com
因此,即使http://othersite.com启动了另一个站点,当我尝试添加时:
RewriteEngine On
RewriteBase /
Redirect 301 /othersite http://othersite.com
到 mysite.com 根 .htaccess 文件,它最终导致 othersite.com 的重定向循环
我怎样才能解决这个问题?