codeIgniter framework
サブドメインのLinuxサーバーにcodeigniter Webサイトをアップロードすると、「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/
ありがとう