首先百度给的配置文件是没啥卵用的,只能访问首页
如果你用的是百度给的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; } }
首先百度给的配置文件是没啥卵用的,只能访问首页
如果你用的是百度给的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; } }