标签:size class cat pre oca nginx listen 代理 span
当我们正常配完nginx时,此时如果在域名的后面加入路径或路由去解析时可能会报一个404的错误,
这个问题其实就是因为我们没有给nginx配路由而已,或者给路由加一个try_files即可,这样就能自动搜索对应的路由了
server { listen 80; server_name localhost; root C:\Users\Administrator\Desktop\dist; autoindex on; index index.html index.htm; location /{ root C:\Users\Administrator\Desktop\dist;。 try_files $uri /index.html; index index.html index.htm; } }
这是除了没有配代理的完整配置
标签:size class cat pre oca nginx listen 代理 span
原文地址:https://www.cnblogs.com/yspace/p/10153711.html