Browse Source

Fixed regrex

For example url contain http://example.com/abc-star which was returning nginx 404 page instead of WordPress page.
old-stable
Nitun 12 years ago
parent
commit
e772e7f86c
  1. 2
      etc/nginx/common/locations.conf

2
etc/nginx/common/locations.conf

@ -14,7 +14,7 @@ location = /robots.txt {
}
# Cache Static Files For As Long As Possible
location ~* .(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
location ~* \.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
access_log off;
log_not_found off;
expires max;

Loading…
Cancel
Save