用PHPstudy nginx 配置tp6 隐藏index.php
如果你访问不了可以利用这个方式来访问,它不支持pathinfo
http://shop.com/?s=index/abc #可以访问
http://shop.com/index.php?s=index/abc 可以访问
http://shop.com/index/abc 不能访问(这个时候你就需要配置nginx)
去你nginx这个配置文件里面找到相应的文件 我的是下面这个
D:\phpstudy_pro\Extensions\Nginx1.15.11\conf\vhosts\shop_80.conf(shop 是我的域名)
在server 里面加上如下这个判断就好了
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
推荐学习网站
http://xiaoyupp.top/index/Muke/index