Я только что закончил установку Nginx для wordpress, но все статические файлы с? Ver = x перенаправляются на страницу nginx по умолчанию.
/jquery-ui-1.8.6.custom.min.js
/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;
}
}
Спасибо всем заранее.
Добавление приведенного ниже кода в nginx должно обслуживать файл, беря только имя файла и игнорируя информацию о версии.
location ~ ^/(assets/js|assets/css) {
root path/to/the/static/files;
access_log off;
expires max;
try_files $uri $1;
}