宝塔面板 添加网站访问不了解决方案
1.如果是tp5 那么请你伪静态一下
代码如下
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
文章来自:https://www.cnblogs.com/roseY/p/9459160.html
1.如果是tp5 那么请你伪静态一下
代码如下
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}