nginx 搭建静态网站

将网站资源放在已安装好的nginx html子目录下,打开conf 目录下的nginx.conf 配置文件

新增一条location  /网站目录 {

                     root   /html/网站目录;

                     index    index.html;

               }

猜你喜欢

转载自blog.csdn.net/qq_40050716/article/details/84983135