Htaccess从一个url重定向到另一个url

时间:2013-09-05 15:11:01

标签: .htaccess redirect

如何重定向以 domain.com/acme1/list-all-products.html 结尾的网址, domain.com/acme2/list-all-products.html etc to domain.com/acme1.html domain.com/acme2.html 。我尝试将这些行添加到我的.htaccess:

RewriteCond %{QUERY_STRING} ^list-all-products.html
RewriteRule ^(.*)$ /$1? [R=301,L]

但我认为没有效果。我知道我错过了什么。

1 个答案:

答案 0 :(得分:0)

查询字符串不是您想要的。你不需要重写:

RewriteRule ^([^/]+)/list-all-products.html$ /$1.html [R=301,L]