Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试提出一个重写规则,该规则将重写:
oldurl.com/v11/file.ext 到 newurl.com/v11/file.ext
在 oldurl 服务器上,我将以下内容放入文件夹 v11 的 .htaccess 中:
Options +FollowSymLinks RewriteEngine On RewriteRule ^v11/(.*)$ http://newurl.com/v11/$1 [R=301,L]
但是重定向根本没有触发。我做错了什么?
将 .htaccess 放入 v11 文件夹时,您的代码应为:
Options +FollowSymLinks RewriteEngine On RewriteRule ^(.*)$ http://newurl.com/v11/$1 [R=301,L]
检查新服务器是否设置为允许在目录级别读取 .htaccess 文件。
如果 .htaccess 文件在另一台服务器上工作,则很可能是服务器配置问题或文件所有者/权限问题。