本文介绍了如何在htaccess中将动态网址重定向到其相关的静态网址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

动态网址就像

example.com/wp/?2323e=467467
example.com/any-page.html?2323e=567856
example.com/any-folder/other-page.html?2323e=6435346

我想将它们全部重定向到其静态网址,例如

I want to redirect them all to their static urls like

example.com/wp/
example.com/any-page.html
example.com/any-folder/other-page.html

请建议如何使用301重定向

please suggest how to do this using 301 redirect

推荐答案

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

To remove query strings, you can use :

RewriteEngine on


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

这将重定向:

/foo?querystring

/foo

这篇关于如何在htaccess中将动态网址重定向到其相关的静态网址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 09:35