<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /courier/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) /courier/index.php?view=$1 [L]
</IfModule>
现在我的链接就像
http://localhost/courier/order-search/
但我有一个包含少量字段的搜索表单,方法是GET,所以链接如下所示
http://localhost/courier/order-search/?test=a&test1=b
所以,我的问题是如何使用GET获取test和test1字段的值?
提前致谢。
答案 0 :(得分:1)
添加QSA标志。
RewriteRule ^(.*) /courier/index.php?view=$1 [L,QSA]