Nginx将图像重定向到帖子

时间:2013-10-08 11:48:54

标签: image redirect nginx jpeg

1 个答案:

答案 0 :(得分:0)

我想你可以试试像

这样的东西
location /users/image/([0-9]+) {
    try_files /node/$1.jpg =404;
}

或 不确定完全重写但它应该接近这样的

location /users/image/ {
    rewrite /users/image/([0-9]+).* /users/image/$1.jpg;
}