vue开发的单页应用(开发中实现子路由打开新标签),发布到nginx后 子路由在新标签打开,显示404
vue开发的单页应用(开发中实现打开子路由在新标签显示) 发布放到nginx里,子路由在新标签打开,显示404
nginx.conf
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
server {
listen 8086;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html/msh;
index index.html index.htm;
}
location /msh/screen/syn-map {
root html/msh;
index index.html index.htm;
}
}
//...**加粗文字**
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道你是不是少了//
nginx加上这个。看你的url,你的路由是开启了history模式。
具体请看History模式