30
CodeIgniterがindex.phpをURLから削除する
私の現在のURLはこのように見えます[mysite]index.php/[rest of the slug]。これらのURL から削除index.phpします。 mod_rewrite私のapache2サーバーで有効になっています。でconfig、$config['index_page'] = ''; 私のcodeignitorルート.htaccessファイルには、 RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] しかし、それでも機能しません。どこがいけないの?