mac部署fastadmin踩坑记录

mac部署fastadmin踩坑记录_第1张图片

 粘贴一下解决配置,主要Nginx配置问题

//后台NGINX
location / {
     if (!-e $request_filename) {
          rewrite ^(.+?\.php)(/.+)$ /$1?s=$2 last;# 加上这一句配置试试
          rewrite ^(.*)$ /ewgadmin.php?s=$1 last; # 对应项目修改对应入口文件
          break;
     }
         
}


//接口文档Nginx配置
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}

你可能感兴趣的:(php,小程序,php)