2013-10-08 16 views

回答

0

嗯,我想你可以嘗試像

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

或 不確定準確地重寫,但它應該接近這樣的事情

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