简介
在前后端分离的项目中通过nginx映射前端的html静态资源出现404,是由于配置静态路径有两种方式
方式1
1 | Sets the root directory for requests. For example, with the following configuration |
当访问/i/top.gif时,root是去/data/w3/i/top.gif请求文件
方式2
1 | Defines a replacement for the specified location. For example, with the following configuration |
alias是去/data/w3/images/top.gif获取文件
总结
由于采用方式1来配置静态资源导致实际映射的目录和访问的目录对不上导致404,后改制方式2后解决问题