图片上传url404
来源:8-9 商品管理模块所有功能自测
qq_perseverance_5
2017-08-14
我是windows,测试图片上传时可以上传到tomcat本地里但是没有成功上传到ftp服务器里,点击url也是404,调了很久也不行,已经不知道该怎么办了,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 *;
}
}
写回答
1回答
-
前缀写错 应该改成 ftp://127.0.0.1/img/ 具体原因可能是因为是自己搭建的ftp服务器 是以自己主机ip搭建的服务器 你并不能上传到其他域名上 我个人这样认为 具体原因得老师来解释
062017-08-15
相似问题