天天看點

nginx 某個url或者url下面的圖檔不能通路就跳到指定的url

                server_name  house.xaklc.com;

                index index.php index.html index.htm;

                root  /data1/web1site/web/house;

                location ~ ^/attachments/.*\.(php|php5)$   

                {

                deny all;

                }

                location ~ ^/data/.*\.(php|php5)$ 

                location ~* ^/attachments/.*\.(jpg|gif|bmp|jpeg|png)$ { 

                    if (!-e $request_filename) {           

                                rewrite ^/(.*)  /static/images/nophotosmall.gif last;

                        }

本文轉自 liang3391 51CTO部落格,原文連結:http://blog.51cto.com/liang3391/577990