`enable_query_strings` 无法正常工作
我正在尝试使用 CodeIgniter 和 xdebug。 当我输入以下 URL 时:
http://localhost/redux/index.php
xdbug 运行良好。 当我访问以下 URL 时:
http://localhost/redux/index.php?
我收到以下 404 错误消息:
XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=124466969367132
Eclipse 使用第二个错误的 URL 启动 Firefox,然后我必须更改它。 我正在使用 enable_query_strings = TRUE
,但仍然收到错误。 我该如何解决这个问题?
I'm trying to use CodeIgniter, and xdebug. When I type in the following URL:
http://localhost/redux/index.php
xdbug works well. When I go to following URL:
http://localhost/redux/index.php?
I receive the following 404 error message:
XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=124466969367132
Eclipse lanches Firefox with the second, wrong URL, and then I have to change it. I'm using enable_query_strings = TRUE
, but I'm still getting the error. How do I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了使其完美工作,请使用:
To get this working perfectly, use:
确保您有
$config['uri_protocol'] = "QUERY_STRING"; 或 $config['uri_protocol'] = "REQUEST_URI";
和
$config['enable_query_strings'] = TRUE;
如果这不起作用,请尝试将您的 URI 字符更改为此
$config['permissed_uri_chars'] = 'az 0-9~%.:_\-?';
Make sure that you have both
$config['uri_protocol'] = "QUERY_STRING"; or $config['uri_protocol'] = "REQUEST_URI";
and
$config['enable_query_strings'] = TRUE;
If that doesn't work try changing your URI Chars to this
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-?';