2015-10-14 77 views

回答

4

试试这个

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

更简单的方法:

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