原本:http://localhost/mycodeigniter4/public/改:http://localhost/mycodeigniter4/

  • 第一步:.public资料夹中的index.php&.htaccess移动到根目录 /mycodeigniter4/

  • 第二步:mycodeigniter4\\app\\Config\\app.php


public string $baseURL = \'http://localhost:8080/\';

public string $baseURL = \'http://localhost/mycodeigniter4/\';

  • 原来的设置假设你使用 CodeIgniter 内置的开发伺服器(php spark serve),并且伺服器运行在默认的 localhost:8080。
  • 更改后的设置假设你将应用程序放在 XAMPP 的 htdocs 目录下,并使用 Apache 伺服器来运行应用程式。这样的修改是正确的,因为现在应用程序是通过 http://localhost/mycodeigniter4/ 加载,而不是通过 CodeIgniter 自带的开发伺服器。*


public string $uriProtocol = \'REQUEST_URI\';

public string $uriProtocol = \'PATH_INFO\';

  • $uriProtocol 控制 CodeIgniter 如何解析 URI。在大多数情况下,默认的 \'REQUESTURI\' 就能正常工作,因为它从伺服器的 REQUESTURI 环境变量中获取 URI。当伺服器配置不一致或者 .htaccess 文件未正确设置时,可能会需要将它改为 \'PATHINFO\',以从 PATHINFO 变量中获取 URI。*

  • 第三步:mycodeigniter4\\index.php


require FCPATH . \'../app/Config/Paths.php\';

require FCPATH . \'app/Config/Paths.php\';