如何使用htaccess重定向网址。我只是尝试了很多,但找不到任何正确的方法。
到
答案 0 :(得分:4)
试试这个
RewriteEngine on
RewriteRule ^test.php/?$ test.php?convert=1&p=$1 [NC,L]
答案 1 :(得分:0)
更简单的方法:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^value=(\d+)$ [NC]
RewriteRule ^test\.php$ /test.php?convert=1&p=%1 [R=301,L,NC]