处理GET与htaccess的GET、htaccess

2023-09-02 01:09:05 作者:全球焦點

我有我的.htaccess文件重定向所有URL的index.php URL = $ 1中所示:

I have my .htaccess file redirecting all URLs to index.php?url=$1 as shown below:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php?url=$1 [L]

但是,当网址验证code = blahblahblah的code =部分没有拉到,因此,这意味着我不能访问它处理第D时:??任何帮助

But when the url is authenticate?code=blahblahblah the code= part is not pulled in, therefore meaning I cannot access it when handling the page D: Any help?

推荐答案

您需要的 [QSA] 的标志呢。

You need the [QSA] flag then.

 
精彩推荐