当前位置: 首页 > 工具软件 > bcloud > 使用案例 >

百度虚拟机 bcloud_nginx_user.conf配置

满俊楠
2023-12-01

首先百度给的配置文件是没啥卵用的,只能访问首页

如果你用的是百度给的thinkphp框架

将根目录webroot下的bcloud_nginx_user.conf文件修改为以下内容即可

location / {
    rewrite / /public/index.php last;
}

location /public/ { 
    if (!-e $request_filename){
       rewrite ^/public/(.*) /public/index.php?s=$1 last;
    }
}
 

 类似资料: