动态网址就像
example.com/wp/?2323e=467467
example.com/any-page.html?2323e=567856
example.com/any-folder/other-page.html?2323e=6435346
我想将它们全部重定向到他们的静态网址,例如
example.com/wp/
example.com/any-page.html
example.com/any-folder/other-page.html
请使用301重定向
建议如何执行此操作答案 0 :(得分:0)
要删除查询字符串,您可以使用:
RewriteEngine on
RewriteCond %{QUERY_STRING} .+ [NC]
RewriteRule ^ %{REQUEST_URI}? [L,R]
这将重定向:
/foo?querystring
到
/foo