|

楼主 |
发表于 2006-3-27 11:18:34
|
显示全部楼层
# Only accept request encodings we know how to handle
# we exclude GET requests from this because some (automated)
# clients supply "text/html" as Content-Type
SecFilterSelective REQUEST_METHOD "!^(GET|HEAD)$" chain
SecFilterSelective HTTP_Content-Type "!(^application/x-www-form-urlencoded$|^multipart/form-data"
这里的限制是说,只允许这两种访问形式,所以svn options就被屏蔽了,那么我开启上面的所有ip都能够正常打开网页浏览其中的内容,允许文件传输。但是svn是不可以的,只能够我允许的这个ip地址用就好啦。 |
|