Code Igniter を使用してアプリを作成しましたが、xampp ですべて正常に動作します。しかし、Web サーバー (Hawkhost) で起動すると、次のエラーが発生しました。
Fatal error: Class 'MY_controller' not found in /home/deremoec/public_html/an.deremoe/application/controllers/search.php on line 5
base_url の名前を webhost から自分のドメインに変更しました。
また、.htaccess の名前を現在の Web サーバー フォルダーに変更しました。
明確な理解のために
$config['base_url'] = 'http://an.deremoe.com/';
私の.htaccess
RewriteEngine On
# Put your installation directory here:
# If your URL is www.example.com/, use /
# If your URL is www.example.com/site_folder/, use /site_folder/
RewriteBase /an.deremoe/
# Do not enable rewriting for files or directories that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# For reuests that are not actual files or directories,
# Rewrite to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [PT,L]