0
でのhtaccessファイルを使用せずにindex.phpを削除する方法私は私のプロジェクトのURLCodeIgniterの
でindex.php
を削除しようとしている私はちょうどhtdocs
にCodeIgniterのフォルダを開き、このコードを貼り付けます。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule .* index.php/$0 [PT,L]
#RewriteRule ^(.*)$ index.php/$0 [PT,L]
RewriteRule ^(.*)$ index.php/$0 [QSA,L]
#RewriteRule ^(.*)$ index.php?/$1 [L]
#RewriteRule ^(.*)$ index.php/$1 [L]
なし、私たちではない –
これは、それがWebサーバ機能CodeIgniterの機能ですされていません削除。これは.htaccessファイルを使って行う必要があります。 – Joe