宝塔建站访问不了的原因:
本系统中hosts文件未加入。解决方法:
hosts文件位置如:C:\Windows\System32\drivers\etc
如若取消时,在配置行前加上#
如果是tp5,设置一下伪静态,代码:
location / {if (!-e $request_filename){rewrite ^(.*)$ /index.php?s=$1 last; break;}}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}