方案一:配置.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>
将以上内容替换
方案二:修改config.php 的配置文件,配置开启pathinfo模式
'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL', 'REQUEST_URI'],
也就是在'pathinfo_fetch'选项里面加入'REQUEST_URL'就可以了
亲测有效。。。
个人qq :1366860941
欢迎一起来讨论