我正在尝试重定向页面,例如:
c.domain1.se/folder1/main.html
至
www.domain2.se/folder1/main.html
我的 htaccess 看起来像这样:
RewriteCond %{HTTP_HOST} c\.domain1\.se$ [NC]
RewriteRule ^ domain2.se%{REQUEST_URI} [QSA,R=301,L,NE]
我收到以下消息:
Forbidden
You don't have permission to access /set on this server.
Webhost 声称没有其他 htaccess 文件干扰 c.domain1.se 上的文件。
关于可能是什么问题的任何想法?