配置nginx静态资源路径
Posted 码农小杰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置nginx静态资源路径相关的知识,希望对你有一定的参考价值。
1.修改nginx.conf文件
server节点下location节点的 root目录修改
location / {
root html;
index index.html index.htm;
}
location / {
root D:/MP/MP51/wwwroot;
index index.html index.htm;
}
以上是关于配置nginx静态资源路径的主要内容,如果未能解决你的问题,请参考以下文章