.htaccess帮助需要重写

时间:2012-01-24 05:57:50

标签: php forms .htaccess

我有一个问题,我在PHP中创建一个应用程序,使用以下代码.htacces所有链接都可以正常工作。

<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字段的值?

提前致谢。

1 个答案:

答案 0 :(得分:1)

添加QSA标志。

RewriteRule ^(.*) /courier/index.php?view=$1 [L,QSA]