在Nginx中部署Vue项目并添加访问后缀是一个常见的需求,通常用于多环境部署或版本控制。以下是详细的配置方法:
首先需要在Vue项目中设置publicPath
(Vue CLI 3+项目):
// vue.config.js
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/your-suffix/' // 你的后缀
: '/'
}
server {
listen 80;
server_name your-domain.com;
location /your-suffix/ {
alias /path/to/your/vue-project/dist/;
try_files $uri $uri/ /your-suffix/index.html;
# 如果使用history模式
if (!-e $request_filename) {
rewrite ^/your-suffix/(.*) /your-suffix/index.html last;
}
}
# 可选:重定向根路径到带后缀的URL
location = / {
return 301 /your-suffix/;
}
}
map $http_host $suffix {
default "";
"test.example.com" "/test";
"dev.example.com" "/dev";
}
server {
listen 80;
server_name ~^(.*)\.example\.com$;
location ~ ^${suffix}(/.*)?$ {
alias /path/to/your/vue-project/dist/;
try_files $1 $1/ ${suffix}/index.html;
# 处理history模式
if (!-e $request_filename) {
rewrite ^${suffix}/?(.*)$ ${suffix}/index.html last;
}
}
}
server {
listen 80;
server_name your-domain.com;
location ~ ^/v[0-9]+\.[0-9]+/ {
alias /path/to/your/vue-project/dist/;
try_files $uri $uri/ @rewrite;
}
location @rewrite {
rewrite ^/v[0-9]+\.[0-9]+/(.*)$ /v1.0/index.html last;
}
}
静态资源404错误:
publicPath
与Nginx配置的后缀一致chmod -R 755 /path/to/dist
路由问题:
缓存问题:
location /your-suffix/ {
add_header Cache-Control "no-cache, no-store, must-revalidate";
add_header Pragma "no-cache";
add_header Expires 0;
}
gzip
压缩提高性能通过以上配置,你可以灵活地为Vue项目添加各种访问后缀,满足不同部署场景的需求。