我需要一个Nginx的重写规则,它将重写所有的图像:
http://mysite.com/index.php/article/foo/images/image.(png|jpg|gif)
讲话:
http://mysite.com/images/image.(png|jpg|gif)
你会想要像这样的东西:
rewrite ^/index.php/article/foo/images/(.*).(png|jpg|gif) /images/$1.$2 ;