nginx中擷取圖片拋404錯誤

來源:互聯網
上載者:User
問題是這樣的,用的是TP架構,web伺服器是nginx。重寫了uri使其請求時過濾了/index.php/*

上線後,頁面擷取js正常,擷取css也正常,但在讀取css中設好的png,jpg等圖片時報404。求各位大神解決方案。

nginx設定:

server {        listen       81;        server_name  location;        charset utf-8;        # 開啟Gzip壓縮        gzip on;        gzip_min_length 1k;        gzip_buffers 4 16k;        #gzip_http_version 1.0;        gzip_comp_level 3;        gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;        gzip_vary off;        gzip_disable "MSIE [1-6]\.";        location / {            root   /home/dy;            index  index.html index.htm index.php;            try_files $uri $uri/ /index.php?s=$uri;        }        location ~ \.php$ {            root          /home/dy;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            include        fastcgi_params;        }}

錯誤記錄檔:

2016/03/16 12:14:11 [error] 8296#0: *4 open() "/home/dy/public/indeximg/bg_head.png" failed (2: No such file or directory), client: xxx.xxx.xxx.xxx, server: location, request: "GET /public/indeximg/bg_head.png HTTP/1.1", host: "xxx.xxx.xxx.xxx:81", referrer: "http://xxx.xxx.xxx.xxx:81/Public/css/main.css"

訪問日誌:

101.44.221.162 - - [16/Mar/2016:12:28:52 +0800] "GET /public/indeximg/bg_head.png HTTP/1.1" 404 31 "http://xxx.xxx.xxx.xxx:81/Public/css/main.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"

回複內容:

問題是這樣的,用的是TP架構,web伺服器是nginx。重寫了uri使其請求時過濾了/index.php/*

上線後,頁面擷取js正常,擷取css也正常,但在讀取css中設好的png,jpg等圖片時報404。求各位大神解決方案。

nginx設定:

server {        listen       81;        server_name  location;        charset utf-8;        # 開啟Gzip壓縮        gzip on;        gzip_min_length 1k;        gzip_buffers 4 16k;        #gzip_http_version 1.0;        gzip_comp_level 3;        gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;        gzip_vary off;        gzip_disable "MSIE [1-6]\.";        location / {            root   /home/dy;            index  index.html index.htm index.php;            try_files $uri $uri/ /index.php?s=$uri;        }        location ~ \.php$ {            root          /home/dy;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            include        fastcgi_params;        }}

錯誤記錄檔:

2016/03/16 12:14:11 [error] 8296#0: *4 open() "/home/dy/public/indeximg/bg_head.png" failed (2: No such file or directory), client: xxx.xxx.xxx.xxx, server: location, request: "GET /public/indeximg/bg_head.png HTTP/1.1", host: "xxx.xxx.xxx.xxx:81", referrer: "http://xxx.xxx.xxx.xxx:81/Public/css/main.css"

訪問日誌:

101.44.221.162 - - [16/Mar/2016:12:28:52 +0800] "GET /public/indeximg/bg_head.png HTTP/1.1" 404 31 "http://xxx.xxx.xxx.xxx:81/Public/css/main.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0"

ls /home/dy/public/indeximg/bg_head.png

ls /home/dy/public/indeximg/bg_head.png看看這個圖片在不在,如果在的話,是否nginx的使用者有訪問的許可權。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.