• 宝塔404 Not Found nginx

    宝塔搭建的nginx环境网站提示404 Not Found nginx  

    image.png

    在伪静态里面添加以下是代码即可:

    location / { 

                 if (!-e $request_filename) { 

                 rewrite   ^(.*)$   /index.php?s=$1 last; 

                 break; 

                 }

             }