Vue爬坑之旅(二十四):百度云虚拟主机BCH部署多个vue项目

注意:此文章使用百度云虚拟主机BCH服务器web内核用Nginx,PHP版本7.0。

第一步:再php配置里把URL_MODEL 配置成2,重写模式;

第二步:在网站的根目录里面(webroot目录下)新建一个bcloud_nginx_user.conf文件(bch是不允许修改基础配置文件的,所以只能通过加载用户自定义配置文件),写入如下代码:

location /hehe {
    if (!-e $request_filename) {
        rewrite .* /hehe/index.php last;
    }
}

以上代码实现在‘hehe’目录下指向不存在文件,则重定向至/hehe/index.php文件

第三步:在主机控制面板中找到站点启停,点击重载站点服务。(切记修改完规则之后一定要重新加载否则不能生效)

多个vue项目部署在此处依然生效

location /hehe {
    if (!-e $request_filename) {
        rewrite .* /hehe/index.php last;
    }
}
location /website_admin {
    if (!-e $request_filename) {
        rewrite .* /website_admin/index.html last;
    }
}
location /website {
    if (!-e $request_filename) {
        rewrite .* /website/index.html last;
    }
}

Nginx配置文件加载流程

系统启动后将自动加载bcloud_nginx_gen.conf和bcloud_nginx_user.conf配置文件:

bcloud_nginx_gen.conf文件是由app.conf文件转换的。

bcloud_nginx_user.conf为用户自定义配置文件。用户可在程序根目录下,创建bcloud_nginx_user.conf文件,在文件里写入自定义配置。BCH支持server级别以下的自定义配置。

当出现重复配置时,bcloud_nginx_user.conf优先级高于bcloud_nginx_gen.conf。

常见程序百度云伪静态规则

http://z.admin5.com/index.php?r=index/rewrite

 

 

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