1.Apache开启mod_rewrite功能
2.根目录下新建 .htaccess文件并加上一些简单的规则就可以移除 index.php
RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php/$1 [L]