mod-rewrite を使用して Codeigniter サイトから「index.php」を削除しようとしています。しかし、私はこの問題で終わります:
元の URI: http://mysite.com/index.php/about
index.php を削除 した後に機能させる唯一の方法: http://mysite.com//about (余分なスラッシュに注意してください)
余分なスラッシュを削除すると、Codeigniter はドメインの後の URL 文字列を「認識」しなくなります。
現在、3 つの異なる mod-rewrite メソッドを試しましたが、すべて同じ問題が発生します。ドメイン名の後にスラッシュを追加しない限り、URI は機能しません。
私の現在の mod_rewrite コード:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{HTTP_HOST} ^www.domain.co
RewriteRule (.*) http://domainname.co/$1 [R=301,L]
</IfModule>