【发布时间】:2011-12-10 17:49:15
【问题描述】:
我浏览了所有关于重写规则问题的回答线程。尝试了这些建议,但我仍然不知道我做错了什么。
我想对我们的旧 URL 进行 301 重定向到新 URL。示例:
old url : http://www.xyz.com/abc/topics.html
new url : http://www.xyz.com/index.php#first
我正在 .htaccess 中尝试遵循规则:
RewriteEngine on
RewriteRule ^\/abc\/(.+)$ http://www.xyz.com/index.php#first [L,R=301]
非常感谢任何建议
【问题讨论】:
标签: apache .htaccess mod-rewrite