处理GET与htaccess的GET、htaccess

由网友(全球焦點)分享简介:我有我的.htaccess文件重定向所有URL的index.php URL = $ 1中所示:I have my .htaccess file redirecting all URLs to index.php?url=$1 as shown below:RewriteEngine OnRewriteCond %{...

我有我的.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.

阅读全文

相关推荐

最新文章