编程语言
首页 > 编程语言> > 无法使用php检索GET参数

无法使用php检索GET参数

作者:互联网

我正在一个php页面上工作,该页面无法从浏览器url检索GET参数值

例如-如果我通过浏览器在网址下方传递

http://www.test.com/afvalbakken?price[]=&price[]=&17[]=&17[]=&16[]=107&18[]=180

var_dump($_ GET)数组下面的输出,它不显示传递的参数

array(1) {
  ["url"]=>
  string(11) "afvalbakken"
}

我使用htaccess文件进行一些URL重写.下面有它的代码

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$/index.php?url=$1 [L]

任何人都知道如何访问那些获取参数,谢谢

解决方法:

您需要在这里QSA标志:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$/index.php?url=$1 [L,QSA]

添加新参数时,QSA(查询字符串追加)标志会保留现有查询参数.

标签:mod-rewrite,get,php,htaccess,url-rewriting
来源: https://codeday.me/bug/20191121/2048245.html