使用 .htaccess 重定向 url

Redirect url using .htaccess

如何使用 htaccess 重定向 url。我只是尝试了很多,但找不到任何合适的方法。

https://demo.com/test.php?value=345

https://demo.com/test.php?convert=1&p=345

试试这个

RewriteEngine on
RewriteRule  ^test.php/?$ test.php?convert=1&p=  [NC,L]

更简单的方法:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^value=(\d+)$ [NC]
RewriteRule ^test\.php$ /test.php?convert=1&p=%1 [R=301,L,NC]