请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

正在回答 回答被采纳积分+3

1回答

geelylucky 2020-05-30 21:19:49

同学,检查一下指定的文件夹中是否存在这个图片

1 回复 有任何疑惑可以回复我~
  • 图片存在的
    回复 有任何疑惑可以回复我~ 2020-05-30 21:37:14
  • 同学,如果存在的话,说明你的nginx这块的静态资源代理没有成功。可以把nginx配置贴上来看看
    回复 有任何疑惑可以回复我~ 2020-05-31 21:44:01
  • image.imooc.com.conf配置	
    server { 
    	listen 80; 
    	autoindex off; 
    	server_name image.imooc.com; 
    	access_log c:/access.log combined; 
    	index index.html index.htm index.jsp index.php; 
    	#error_page 404 /404.html; 
    	if ( $query_string ~* ".*[\;'\<\>].*" )
    	{ return 404; } 
    	location ~ /(mmall_fe|mmall_admin_fe)/dist/view/* 
    	{ deny all; } 
    	location / { 
    	root C:\ftpfile\img; 
    	add_header Access-Control-Allow-Origin *; 
    	} 
    }
    
    tomcat.imooc.com.conf配置
    server { 
    	listen 80; 
    	autoindex on; 
    	server_name tomcat.imooc.com; 
    	access_log d:/access.log combined; 
    	index index.html index.htm index.jsp index.php; 
    	#error_page 404 /404.html; 
    	if ( $query_string ~* ".*[\;'\<\>].*" ){ 
    		return 404; 
    	} 
    	location / { 
    	    proxy_pass http://127.0.0.1:8080; 
    		add_header Access-Control-Allow-Origin *; 
    	} 
    }
    
    hosts
    
    127.0.0.1  image.imooc.com
    127.0.0.1  tomcat.imooc.com
    127.0.0.1  img.happymmall.com
    回复 有任何疑惑可以回复我~ 2020-06-01 09:42:22
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信