nginx在windos下配置路径问题

报错配置

server {
       listen       8181;
       location / {
            root  D:\work\工作内容\0017.Burp Suite 研究\漏洞演示代码;
            index  a.html;
        }
     }

正确配置

server {
       listen       8181;
       location / {
            root  "D:\work\工作内容\0017.Burp Suite 研究\漏洞演示代码";
            index  a.html;
        }
     }
posted @ 2023-05-22 15:36  镇魂帆-张  阅读(59)  评论(0编辑  收藏  举报