我正在使用带有友好 URL (.htaccess) 的 Codeigniter 2.1.3。
在控制器中:
public function confirm($key) {
var_dump($this->input->get());
}
但链接 _http://site.com/confirm/12345 返回“布尔假”。
如何在 URL 中启用查询字符串,或者如何过滤 $key ?
我的.htaccess:
RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt|files|templates)
RewriteRule ^(.*)$ /index.php?/$1 [L]