apache配置,禁止指定后缀访问

每天都有人来服务器上扫描点什么,想下载点数据库或者什么的 
服务器是java的,没有asp或者mdb这样的访问 
用一下配置,可以禁止asp或者mdb访问,也可以加上zip和rar禁止

<Directory "C:/java/tomcat-6.0.20/webapps/ROOT"> 
Options -Indexes FollowSymLinks 
AllowOverride All 
<Files ~ ".asp|.mdb"> 
Order allow,deny 
Deny from all 
</Files> 
ErrorDocument   404   /404.jsp 
ErrorDocument   403   /404.jsp 
</Directory>

时间: 2024-12-27 14:31:03

apache配置,禁止指定后缀访问的相关文章

Apache 配置禁止指定的 user_agent

User-Agent(浏览器类型),即不让哪些浏览器来访问我们的网站 [[email protected] ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf <VirtualHost *:80> DocumentRoot "/data/www" ServerName www.test.com ErrorLog "logs/test.com_error_log" CustomLog "

Apache配置SSL 实现https访问

本次坏境:CA和apache为同一台主机 先使本机作为CA服务端: [[email protected]~]#yum -y install openssl openssl-devel [[email protected]~]#vi /etc/pki/tls/openssl.cnf [ CA_default ] dir = ../../CA 改为: [ CA_default ] dir= /etc/pki/CA 为了减少不必要的重复操作,可以预先定义[ req_distinguished_name

apache http允许指定IP访问

打开apache(httpd)下的conf/httpd.conf #vi httpd.conf 进入配置文件后,输入下面命令显示行数 #:set nu 在大约216行处<Directory>标签里,写入下面几行 Options All AllowOverride None Order deny,allow Deny From All   #禁止所有IP访问 Allow From 192.168.1.10  #允许192.168.1.10这个IP访问 以上内容是先将所有IP都限制不能访问,在指定

Nginx 安装配置 禁止使用IP访问 rewrite重写 别名设置 日志轮询

1.yum install pcre pcre-devel -y#支持rewrite重写功能 2.yum -y install openssl openssl-devel#支持https功能 3.useradd nginx -s /sbin/nologin -M#添加用户 4.tar zxf nginx-1.6.2.tar.gz   cd nginx-1.6.2./configure \--user=nginx --group=nginx \--prefix=/application/nginx

apache配置多个端口访问

1.配置httpd.conf # Listen: Allows you to bind Apache to specific IP addresses and/or# ports, instead of the default. See also the <VirtualHost># directive.## Change this to Listen on specific IP addresses as shown below to # prevent Apache from glommi

Apache 配置禁止客户端解析 PHP

有时候黑客们会上传某些 php 木马文件到我们网站上,一旦其他用户查看了会导致我们的网站出现安全问题,这样我们就应该禁止客户端解析 php [[email protected] ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf VirtualHost *:80> DocumentRoot "/data/www" ServerName www.test.com ErrorLog "logs/test.com_e

Nginx配置——禁止指定user_agent

用途 你的网站访问量很大,而且服务器资源比较紧缺,因为我们的成本要稍微控制地严谨一点,所以呢,服务器稍微有点吃力,那么,网站呢它都会被搜索引擎的蜘蛛去爬取,它们去爬取的时候呢,跟咱们真人访问的行为是一样的,同样也会访问我们的数据库,同样也会耗费php资源,所以这个时候,有必须把一些不太重要的搜索引擎.蜘蛛爬虫给它禁掉. ## 编辑配置文件 [[email protected] ~]# vim /usr/local/nginx/conf/vhosts/test.conf if ($http_use

Apache配置禁止站点目录浏览

第一种:加-(减号)表示注释 <Directory"/application/apache2.2.26/htdocs"> Options -IndexesFollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> 第二种直接去掉: <Directory"/var/blog/"> Options FollowSymLinks Allow

【wuzhicms】apache 设置禁止访问某些文件或目录

[apache配置禁止访问] 1. 禁止访问某些文件/目录 增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库: <Files ~ "\.inc$"> Order allow,deny Deny from all </Files> 禁止访问某些指定的目录:(可以用 <DirectoryMatch>   来进行正则匹配) <Directory ~ "^/var/www/(.+/)*[0-9]{3}&quo