你链接有问题吧,不管你服务器是系统的。图片访问路径都是相对网站域名的,如果你域名是
http://a.com ,然后图片是放在项目 Public/images/img.jpg ,那图片访问地址就是
http://a.com/Public/images/img.jpgnginx 配置(Apache 也类似)
server {
listen 80;
root /home/colin/test_app/;
index index.php index.html index.htm;
server_name
test.com;
location ~\.php {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
access_log /home/logs/nginx/access.log;
error_log /home/logs/nginx/error.log;
}