-1
私はindex.phpを削除することに大きな問題がありました。原則として以下の.htaccessは、いくつかのサーバーでテストされ、一般的に動作されています:あなたはあなたのルートフォルダに.htaccessファイルを追加する必要がhttp://localhost/test/index.php/home/planscodeigniterのURLからindex.phpを削除するには
私はindex.phpを削除することに大きな問題がありました。原則として以下の.htaccessは、いくつかのサーバーでテストされ、一般的に動作されています:あなたはあなたのルートフォルダに.htaccessファイルを追加する必要がhttp://localhost/test/index.php/home/planscodeigniterのURLからindex.phpを削除するには
CodeIgniterの にリンクの下にあるindex.phpを削除する方法
。
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
保存システムフォルダ以下のhtaccess
での.htaccessとしてこのファイル?すでにこれをカバーするいくつかの質問があります。 http://stackoverflow.com/questions/6809373/remove-index-php-from-url-codeigniter?rq=1 http://stackoverflow.com/questions/6201409/how-to-remove-index-php-from -codeigniter-url?rq = 1 http://stackoverflow.com/questions/5155333/remove-index-php-from-url-codeigniter-2?rq=1 http://stackoverflow.com/questions/9368543/remove -index-php-codeigniter-urls?rq = 1 – Tom
あなたのルートフォルダに、この[code](http://stackoverflow.com/questions/43364031/redirection-issues-in-live-サーバー/ 43364089#43364089) でRewriteBase/ するRewriteCond%{REQUEST_FILENAME}!-f するRewriteCond%{REQUEST_FILENAME}上の –
RewriteEngineは! のRewriteRuleを-d。*のindex.php/$ 0 [PT、L] – user3294120