如何使用 Nginx 提供带版本号的静态文件?

如何使用 Nginx 提供带版本号的静态文件?

我刚刚为 wordpress 安装完 Nginx,但是所有带有 ?ver=x 的静态文件都重定向到 nginx 的默认页面。

在职的

/jquery-ui-1.8.6.custom.min.js

重定向到默认 Nginx 页面

/jquery-ui-1.8.6.custom.min.js?ver=1

这是我的配置。我这里缺少什么?

server {
        listen   80;

        root /var/www/domain.com;
        index index.php index.html index.htm;

        server_name domain.com;

        location / {
                try_files $uri $uri/ /index.php?q=$uri&$args;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
              root /usr/share/nginx/www;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
                try_files $uri =404;
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
         }        
}

提前感谢大家。

答案1

将下面的内容添加到 nginx 应该只采用文件名并忽略版本信息来提供文件。


 location ~ ^/(assets/js|assets/css) {
    root path/to/the/static/files;
    access_log off;
    expires max;
    try_files $uri $1;
  }

相关内容