location /web {
alias /usr/share/nginx/web; #项目所放路径
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
访问时 www.域名.com/web
然后项目打包还需要设置运行的基础路径为 /web/
uniapp h5 manifest.js 中设置
vue项目的话设置 vue.config.js
const webpack = require("webpack");
module.exports = {
publicPath:"/web/",
};
评论区