301重定向具有.htaccess特定字符串的URL

时间:2012-08-28 23:49:41

标签: string .htaccess redirect

我是这个编码的新手。我已经搜遍了各种方法来做到这一点,但我还没有提出一个有效的解决方案。我甚至不确定我是否正在寻找正确的东西。我一直在看query_string,但我很难过。

基本上,我想301将http://domain.com/page12345.html等网址重定向到http://domain.com/page23456.html,其中“page12345”可以读取任意数字和任意位数。该格式的所有页面都将重定向到设置页面。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

此规则应重定向与/page*.html匹配的任何请求,其中*是数字字符的任意组合

RewriteEngine On
RewriteRule ^/page([0-9]+)\.html http://domain.com/page23456.html [R=301,L]
相关问题