首页 > 解决方案 > php无法打开strem

问题描述

我刚刚安装了我的 xampp,我想打开一个 CodeIgniter 项目。但是当我打开这个项目时出现这个错误。谁能帮我?

警告:require_once(C:\xampp\htdocs\Requisition_Project\system\core/CodeIgniter.php):无法打开流:C:\xampp\htdocs\Requisition_Project\index.php 中没有这样的文件或目录在第 315 行

致命错误:require_once():在 C:\xampp\htdocs\ 中打开所需的 'C:\xampp\htdocs\Requisition_Project\system\core/CodeIgniter.php' (include_path='C:\xampp\php\PEAR') 失败第 315 行的 Requisition_Project\index.php

标签: phpcodeigniterxampp

解决方案


你能在你的 .htaccess 中试试这个吗?这个是在 codeigniter 中使用的新鲜 .htaccess 文件

RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1

推荐阅读