【发布时间】:2011-09-24 18:03:07
【问题描述】:
您好,无论如何我都不是程序员,我正在尝试根据以下内容在我的 htaccess 文件中进行多 301 重定向:
所以我有大量具有相似命名约定的网址 - 这是 2 个示例。
http://www.hollandsbrook.com/garrett-at-gold/
http://www.hollandsbrook.com/garrett-ace-250/
这些网址需要重定向到:
http://www.hollandsbrook.com/garrett-metal-detectors/garrett-at-gold/
http://www.hollandsbrook.com/garrett-metal-detectors/garrett-ace-250/
我可以一次将它们重定向 1 行,但我想使用正则表达式。
这是我到目前为止的想法,但没有奏效:
重写规则 ^garrett-([a-z])/$ /garrett-metal-detectors/$1/ [R]
基本上,我需要将任何以“garrett-”开头的页面重定向到根目录,以包含“garrett-metal-detectors”的文件夹路径。
任何想法将不胜感激。非常感谢您的帮助。
【问题讨论】:
标签: .htaccess mod-rewrite redirect