使用.htaccess(特定的一个)重写URL

时间:2013-07-03 16:18:15

标签: .htaccess url rewrite

需要帮助使用.htaccess文件重写URL。新网站在网址中丢失了“dovanos”这个词,我希望保存我的客户并将其重定向到正确的页面。

我有几千个这样的网址:

www.example.com/dovanos/category1/item1.html

www.example.com/dovanos/category1/item2.html

www.example.com/dovanos/category2/item1.html

www.example.com/dovanos/category2/item2.html

等等。需要重写它们,以便他们松开“dovanos”这个词:

www.example.com/category1/item1.html

www.example.com/category1/item2.html

www.example.com/category2/item1.html

www.example.com/category2/item2.html

有人可以帮忙吗?谢谢!

1 个答案:

答案 0 :(得分:1)

RewriteEngine on
RewriteRule ^dovanos/(.*)\.html$ $1.html [R=301,L]