这是我为 MVC 设置的 htaccess。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>
所以对localhost/users/的任何请求都会重定向到localhost?url=users/
但是当 url 中有一些可用的数据时,例如:localhost/users/?msg=hello
我在 $_GET['url'] 中缺少?msg=hello 。是否可以重定向到类似localhost/users/msg=hello/