nginx配置静态资源访问遇到的小白问题

错误案例

 listen  80;
      server_name  localhost;
      
	 location /dist/ {
    
    
		 root E:\\project\\handvoer\\front\\dist;
		 index index.html;
	 }
	 location /Pictures/ {
    
    
		 root C:\\Users\\DELL\\Pictures;
		 autoindex on;
	 }

正确案例

 listen  80;
      server_name  localhost;
      
	 location /dist/ {
    
    
		 root E:\\project\\handvoer\\front;
		 index index.html;
	 }
	 location /Pictures/ {
    
    
		 root C:\\Users\\DELL;
		 autoindex on;
	 }

在这里插入图片描述

Guess you like

Origin blog.csdn.net/weixin_39472101/article/details/119671550