搜索

首页  >  问答  >  正文

nginx如何根据路径匹配不同的静态资源目录

nginx如何根据路径匹配不同的静态资源目录

location /console/ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
{
    root /opt/jenkins/workspace/little_garden_web/console;
    index /opt/jenkins/workspace/little_garden_web/console/index.html;
    expires      30d;
}

location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
{
    root /opt/jenkins/workspace/little_garden_web/dist;
    expires      30d;
}

我希望路径带console的时候访问一个特殊的静态资源目录,其他的都到另一个去获取,不知道配置文件该怎么写

给我你的怀抱给我你的怀抱2807 天前754

全部回复(1)我来回复

  • 黄舟

    黄舟2017-05-16 17:09:51

    可以多看下nginx关于location的一些配置,提供一种方法

    location ^~ /console/ {
        root /console;
        expires  30d;
    }
    
    location ~* \.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {
        root /dist;
        expires  30d;
    }

    回复
    0
  • 取消回复