原来的nginx的缓存设置是这样的  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
                expires 30d;
        }
由于手机端访问的需要,我把图片给参数化了,表面上请求的是图片,其实被重定向到了index.php的页面,参数化设置之后: location  / {
            rewrite /(.*)_(.*)_(.*)_(.*)_(.*)_(.*).jpg /index.php?netType=$1&width=$2&height=$3&pId=$4&skuId=$5&index=$6 last;
}
请问如何继续使用nginx的缓存??