2015-10-14 84 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]