nginx 要实现图片的伪静态必须去掉这些
nginx 要实现图片的伪静态必须去掉这些
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
error_log /dev/null;
access_log /dev/null;
}
伪静态规则
location / {
if (!-e $request_filename) {
rewrite ^/view/img/pic(.*).png /img.php last;
rewrite ^((.*)/) /index.php last;
}
}