Htaccess重定向301文件夹

时间:2014-05-26 19:28:30

标签: .htaccess url-redirection

我想使用旧链接的htaccess文件进行重定向

www.domain.com/220262/page.html to www.domain.com/video/220262/page.html 

谢谢

1 个答案:

答案 0 :(得分:0)

这应该有效:

RewriteEngine On
RewriteRule ^([0-9]+)/page.html /video/$1/page.html [R=301,L]