随笔:
• 系统客户端及管理后台共用同一个域名,通过nginx代理管理后台项目时刷新页面返回404(history 模式);
• vue hash 模式下可以解决此问题,但是url 中存在"#"不太美观
修改nginx 配置
location /admin {
alias /usr/share/nginx/html/;
index index.html index.htm;
try_files $uri $uri/ /admin/index.html;
}
随笔:
• 系统客户端及管理后台共用同一个域名,通过nginx代理管理后台项目时刷新页面返回404(history 模式);
• vue hash 模式下可以解决此问题,但是url 中存在"#"不太美观
修改nginx 配置
location /admin {
alias /usr/share/nginx/html/;
index index.html index.htm;
try_files $uri $uri/ /admin/index.html;
}