htaccess 去掉CI 路由中的 index.php

#default page
DirectoryIndex index.php

#remove index.php on url
#by mot
#For apache rewrite module

<IfModule mod_rewrite.c>
	RewriteEngine on
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
 </IfModule>

你可能感兴趣的:(htaccess 去掉CI 路由中的 index.php)