次の URL のサーバーに CodeIgniter アプリケーションをセットアップしました。
http://subdomain.domainame.com/something1/something2/
(例としてsomething1とsomething 2を使用しました)
これで、上記の URL を使用してアプリケーションに問題なくアクセスでき、末尾に /index.php/controller/action などを追加できます。
アプリケーションがホストされているのと同じディレクトリに .htaccess ファイルをセットアップしようとしましたが、機能していないようです。
.htaccess ファイルには次のものが含まれます。
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ something1/something2/index.php?/$1 [L]
これにより、500 内部サーバー エラーが発生します。
誰でもこれに光を当てることができますか?