如何在htaccess中将动态网址重定向到相关的静态网址?

时间:2016-05-25 15:09:31

标签: php .htaccess redirect mod-rewrite url-redirection

动态网址就像

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重定向

建议如何执行此操作

1 个答案:

答案 0 :(得分:0)

要删除查询字符串,您可以使用:

RewriteEngine on


RewriteCond %{QUERY_STRING} .+ [NC]
RewriteRule ^ %{REQUEST_URI}? [L,R]

这将重定向:

/foo?querystring

/foo