.htaccess 隐藏index.php

作者: 吴杰 分类: 编程 发布时间: 2016-05-21 22:27

.htaccess 隐藏index.php

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