gpt4 book ai didi

nginx - vue 与 nginx : path not matching

转载 作者:搜寻专家 更新时间:2023-10-30 22:52:00 25 4
gpt4 key购买 nike

我正在用 nginx(1.10.2) 设置 vue(2.1.x),我有以下配置:

location / {
root /var/lib/myRepo/dist/;
index index.html;
}

当我点击“http://localhost:8080/”时这有效',但是当我点击其他网址时:' http://localhost:8080/products/home ', 我得到:

404 Not Found

我也试过以下:

root   /var/lib/myRepo/dist/;
location / {
try_files $uri $uri/ index.html$query_string;
}

这里可能有什么问题以及如何纠正。

最佳答案

你可以这样关注:

server {
listen 80;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
try_files $uri $uri/ @router;
index index.html;
}

location @router {
rewrite ^.*$ /index.html last;
}
}

关于nginx - vue 与 nginx : path not matching,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41392508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com