博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 某个url或者url下面的图片不能访问就跳到指定的url
阅读量:5977 次
发布时间:2019-06-20

本文共 429 字,大约阅读时间需要 1 分钟。

                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)$ 
                {
                deny all;
                }
                
                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

转载地址:http://gnpox.baihongyu.com/

你可能感兴趣的文章
TDSS. TDL-4
查看>>
iOS中EXC_BAD_ACCESS解决办法
查看>>
什么样的技术人员更容易接到软件开发项目?(论干私活儿)
查看>>
grep,egrep及元字符和posix字符集
查看>>
inotify 实时的Linux文件系统事件监控
查看>>
自动装箱与自动拆箱的一些问题
查看>>
配置CentOS的网络环境
查看>>
MongoDB对指定键进行排序
查看>>
paramiko-exec.py——利用paramiko远程执行命令
查看>>
android应用植入广告SDK,获取广告收入
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Springboot2.1.3 + redis 实现 cache序列化乱码问题
查看>>
各种资源思科、gns3……
查看>>
oracle基础之工具系列(持续更新中,,)
查看>>
C 过渡 C++ 1
查看>>
JSP自定义标签渲染时报Illegal to flush错误
查看>>
压力测试与提升服务器能力的几个方法
查看>>
undo详解
查看>>
12.super关键字
查看>>