1
試圖通過Nginx重定向到腳本來生成圖片,但在解決這個簡單問題時會遇到問題。 寫下了配置(嘗試不同的變體,這是最後一個),但它仍然不會工作。Nginx正在處理圖片
location /img/(\d+)\.(jpg|png|gif)$ {
root /path/to/img_dir;
expires max;
add_header Pragma public;
add_header Cache-Control "public";
try_files $1.$2 http://site.com/generate_img/$1.$2;
}
也用這種代碼insted的的try_files
:
if (!-f $document_root/$1.$2) {
rewrite^http://site.com/generate_img/$1.$2;
}
我仍然收到404頁面。試圖設置重定向到簡單的HTML頁面,但沒有改變。也許它不是關於文檔根路徑? – zona 2012-03-08 10:35:52
位置〜* ^/image_dir /([[:digit:]] +)\。(jpe?g | png | gif)$ { \t root/path/to/domain/dir; \t try_files /image_dir/$1.$2 /test.html; }' 試過這個配置 – zona 2012-03-08 10:41:07