`enable_query_strings` 无法正常工作

发布于 2024-07-24 21:12:33 字数 440 浏览 7 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白芷 2024-07-31 21:12:33

为了使其完美工作,请使用:

$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE;

To get this working perfectly, use:

$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE;
离不开的别离 2024-07-31 21:12:33

确保您有

$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~%.:_\-?';

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文