将vue项目部署到nginx遇到了刷新页面跳转到404错误页面的问题,项目不是部署在根目录下面。有相关同学遇到过类似情况吗。我已经安装官网的配置 try_files $uri $uri/ /index.html;
nginx配置
location / {
proxy_pass http://xxxx;
}
location /category {
root /home/tv;
index index.html;
try_files $uri $uri/ /index.html;
}
webpack 配置
build: {
env: require('./prod.env'),
index: path.resolve(__dirname, '../dist/index.html'),
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: '/category/',
productionSourceMap: true,
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
},
正确配置