nginx过滤静态文件的日志
语言:nginx
    location ~ \.(ico|gif|jpg|jpeg|png|bmp|webp|swf|js|css|woff|ttf)$ {
        access_log off; #不输出访问静态资源的日志
        try_files $uri $uri/ /index.php?$query_string;
    }