1、apache环境:修改public/.htaccess文件(也就是在index.php后边加个?)
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]</IfModule>
?
2、Nginx环境:在nginx.conf文件中添加
location / { //...省略部分代码 if(!-e $request_filename){ rewrite ^(.*)$ /index.php?s=/$1 last; break; } }