nginx根据扩展名限制程序和文件访问禁止访问php?

2024年09月27日 建站教程

nginx根据扩展名限制程序和文件访问禁止访问php?下面web建站小编给大家详细介绍一下具体代码!

nginx配置如下:

server {
    listen       80;
    server_name  www.lmcjl.com;
    location / {
        root   html;
        index  index.php index.html index.htm;
    }
 
    location ~ ^/images/.*\.(php|php5|sh|pl|py)$
    {
      deny all;
    }
 
    location ~ ^/static/.*\.(php|php5|sh|pl|py)$
    {
      deny all;
    }
 
    location ~ ^/data/(attachment|avatar).*\.(php|php5)$
    {
       deny all;
    }
    
    //禁止访问*.txt和*.doc文件
    location ~* \.(txt|doc)$ {
      if (-f $request_filename) {
      root /data/www/www;
      #rewrite ...    #可以重定向到某个URL;
      break;
      }
  }
  location ~* \.(txt|doc)$ {
      root /data/www/www;
      deny all;
  }
}

本文链接:http://so.lmcjl.com/news/14054/

展开阅读全文