|
提交如下表单,
HTML复制代码
<form action="http://localhost/ci/index.php/welcome/index" method="get">
<input name="test" type="text" />
<input type="submit" value="确定" />
</form>
复制代码
如果设置 $config['uri_protocol'] = "AUTO"; 时url路径变成 "http://localhost/ci/index.php/welcome/index?test=abc" 的形式,出现页面找不到的提示。
已经知道把 $config['uri_protocol'] = 'PATH_INFO'; 就可以了。现在想知道,如果$config['uri_protocol'] = 'AUTO'; 时,是不是就不可以用get方法提交表单了? |
|