Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 1.html?somerequest url 重定向到 2.html(无请求)
这是我的重写规则:
RewriteRule ^katalog/category/product/41-category/7865-productname.html?(.*)$ /katalog/category/product/41-category/7865.html [R=301,L]
但它将我重定向到 7865.html?request
请帮帮我。谢谢。
将规则更改为
RewriteRule ^(.*)/7865-productname.html$ $1/7865.html? [R=301,NC,L]