我想获取查询字符串变量值,并在配置文件中允许查询字符串规则。
我的网址:
http://localhost/Demo/admin_login/?mts=ok
我在配置文件中做了:
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = TRUE;
$config['uri_protocol'] = 'PATH_INFO';
在控制器中,我回应了这个
echo $_GET['mts'];
我收到了这个错误:
Message: Undefined index: mts
答案 0 :(得分:0)
更改.htaccess以删除? (如果存在)重写规则
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]