4

我正在尝试使用 CodeIgniter 和 xdebug。当我输入以下 URL 时:

http://localhost/redux/index.php

xdbug 运行良好。当我转到以下网址时:

http://localhost/redux/index.php?

我收到以下 404 错误消息:

XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=124466969367132 

Eclipse 使用第二个错误的 URL 启动 Firefox,然后我必须更改它。我正在使用enable_query_strings = TRUE,但我仍然收到错误消息。我该如何解决这个问题?

4

2 回答 2

8

要使其完美运行,请使用:

$config['uri_protocol'] = "PATH_INFO";
$config['enable_query_strings'] = TRUE;
于 2009-06-17T15:02:16.727 回答
2

确保你同时拥有

$config['uri_protocol'] = "QUERY_STRING"; 或 $config['uri_protocol'] = "REQUEST_URI";

$config['enable_query_strings'] = TRUE;

如果这不起作用,请尝试将您的 URI 字符更改为此

$config['permitted_uri_chars'] = 'az 0-9~%.:_\-?';

于 2009-06-11T01:20:42.107 回答