使用nginx部署Fastadmin

       location / {
            index  index.html index.htm index.php;
            #主要是这一段一定要确保存在
            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=/$1  last;
                break;
            }
            #结束
            #autoindex  on;
        }

伪静态配置

站点配置文件中需要加上

你可能感兴趣的:(nginx,运维)