标签: php .htaccess mod-rewrite
我需要像这样制作网址 http://example.com/search?word=something。 但是当我用htaccess重写时,我无法获得$_GET["word"]。
http://example.com/search?word=something
$_GET["word"]
我的htaccess:
RewriteRule ^search\?word=([^/]*)$ /index.php?page=search&word=$1 [L]
答案 0 :(得分:0)
感谢Benno。我通过向RewriteRule添加QSA标志解决了这个问题。