显示您的系统文件夹路径似乎未正确设置。请打开以下文件并更正:index.php访问我的CI项目
答案 0 :(得分:0)
消息中提到的文件(index.php)通常位于Codeigniter安装的根文件夹中。
Codeigniter的普通文件结构就是这个。
/root_name (often named 'www' or 'htdocs')
/application
/system
index.php <- Is the file to edit
您需要进行调整的index.php部分如下所示。
/*
* ---------------------------------------------------------------
* SYSTEM DIRECTORY NAME
* ---------------------------------------------------------------
*
* This variable must contain the name of your "system" directory.
* Set the path if it is not in the same directory as this file.
*/
$system_path = 'system';
如果使用正常安装文件夹结构,则正确的条目是“system”。如果您已将“系统”文件夹移至其他位置或重命名,则必须调整$system_path
的值以匹配新位置或名称。