在应用入口文件同级目录添加或者修改.htaccess
文件,另外此配置需要mod_rewrite.so
模块支持
原代码: <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> 修改: RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 为: RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]