tp隐藏应用的入口文件index.php 服务器的配置
程序员文章站
2022-04-17 17:03:59
...
[ Nginx ]服务器配置:
打开phpstudy然后进入vhosts.conf配置文件中修改:
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}