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.
我检查了很多 htaccess 重定向,但似乎找不到适合我需要的重定向。我们有一个像这样的旧网址:
www.domain.com/shoes/nike/filter/gender/men
我想要一个规则来检查字符串“过滤器”的 url,然后 301 将其重定向到:
www.domain.com/shoes/nike
用htaccess可以吗?
这应该可以帮助您:
RewriteEngine On RewriteRule (.*)/filter http://www.domain.com/$1 [R=301,L]
它只是删除“过滤器”后的所有内容