jpg文件的Nginx 404错误

时间:2015-03-10 19:19:00

标签: nginx

我对404错误感到困惑,尽管一切似乎都没问题。

我需要访问外部网站的几个文件 - 1个swf和几个jpgs。

location指令适用于swf:

location /test.swf {
    root /www/test/static/swf;
}

完全打开example.com/test.swf

然后jpg文件会出现一些魔力。无论我做什么,我总是得到404错误。我试过了:

location /img {
    root /www/test/static/img;
}

当我尝试使用example.com/img/img1.jpg

访问jpg文件时,它会给出404

我甚至尝试过与swf相同的方式:

location /img1.jpg {
    root /www/test/static/img;
}

再次404 example.com/img1.jpg

你可以告诉我有什么问题吗?

0 个答案:

没有答案