VPS侦探论坛

 找回密码
 注册
查看: 4601|回复: 2

[Nginx] 虚拟目录下图片无法访问

[复制链接]
发表于 2019-10-13 08:12:08 | 显示全部楼层 |阅读模式

网站目录是
server_name www.xm.com
root /home/wwwroot/web
虚拟目录
location /abc/ {
                      alias /home/wwwroot/xm/bcd/;
                }
以下图片选项 在网站目录中可以正常访问,但在虚拟下就不能访问
可以访问
就不能访问,404
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }
但把这个图片选项删除掉 都可以正常访问了.
这个是什么问题???
包括 location ~ .*\.(js|css)?$
        {
            expires      12h;
        }
也是一样...删除了,虚拟目录下的路径才能正常访问.

整个nginx 网站配置 lnmp 1.4
server
    {
        listen 80;
        #listen [::]:80;
        server_name www.xm.com;
                rewrite ^(.*) https://$server_name$1 permanent;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/web;

        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include proxy-pass-php.conf;

                location /abc/ {
              alias /home/wwwroot/xm/bcd/;
                }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log off;
    }



补充内容 (2019-10-13 08:14):
www.xm.com/abc/a.html 也能正常访问
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2019-10-13 12:47:20 | 显示全部楼层


如果要图片、js之类的缓存只能在虚拟目录的location里面再嵌套上图片和js的location
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
 楼主| 发表于 2019-10-13 14:20:32 | 显示全部楼层

licess 发表于 2019-10-13 12:47
如果要图片、js之类的缓存只能在虚拟目录的location里面再嵌套上图片和js的location ...

醍醐灌顶,谢谢....
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-5-17 17:51 , Processed in 0.026410 second(s), 15 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表