无法在 drupal 中进行 301 重定向 url
我正在尝试使用 .htaccess 将 url 从位置 a 重定向到 b,并使用以下代码,但
RewriteRule ^accessibility$ http://example.com/topic/accessibility/ [R=301,L]
它不起作用
我已打开此功能
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
i am trying to redirect an url from location a to b using .htaccess with the following code
RewriteRule ^accessibility$ http://example.com/topic/accessibility/ [R=301,L]
it is not working
i have this turned on
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你是对的:那是行不通的。请改用 路径重定向 模块。以下是其项目页面的摘录:
I think you're right: that won't work. Use the Path redirect module instead. Here is an excerpt from its project page:
尝试:
顺便说一句,与
mod_rewrite
相关的问题最好在 serverfault.com 上提出,所以如果版主出现,请不要感到惊讶把这个问题迁移到那里。Try:
BTW,
mod_rewrite
related questions are better asked on serverfault.com, so don't be surprised if a moderator migrates this question over there.