我是新手codeIgniter framework
,当我在子域的 linux 服务器上上传 codeigniter 网站时,它给出了error
“ Unable to load the requested file: Home\home.php
”,但在我的本地 Windows 机器上工作正常,我检查了区分大小写的问题,但这些都很好,我也检查了.htaccess
文件但没有成功。任何建议。
这是我的控制器“home.php”:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->template->set('nav', 'home');
$this->load->model('Home_model', 'home');
}
public function index()
{
$this->template->set('title', 'Books Bazaar : Home');
$this->template->load('template', 'Home\home');
}
?>
我的 .htaccess 文件包含:
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
我上传网站的域是:http: //books.atntechnologies.com/
谢谢