有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

Apache服务器上的java禁用选项HTTP

Request:
OPTIONS / HTTP/1.1
Host: webcat.staci.com
Connection: Keep-alive
Accept-Encoding: gzip,deflate
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.21 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.21
Accept: */*

Response:
HTTP/1.1 200 OK
Date: Thu, 01 Oct 2015 12:24:59 GMT
Server: Apache
X-Frame-Options: SAMEORIGIN
Allow: GET,HEAD,POST,OPTIONS,TRACE
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Keep-Alive: timeout=7, max=95
Connection: Keep-Alive
Content-Type: httpd/unix-directory
Set-Cookie: BIGipServerwebcat-ssl=192938503.47873.0000; path=/; httponly; secure

我想在Apache服务器上禁用HTTP选项,但我想保留GETPOSTPING我的服务器

我怎么能这么做

我的httpd。形态:

RewriteEngine On
RewriteCond %{REQUEST_METHOD} !^ (GET,POST,HEAD)
RewriteRule .* – [R=405,L]

共 (2) 个答案

  1. # 1 楼答案

    如果要将其应用于特定项目:

    简单地将这些行添加到.htaccess文件中对我来说很有用:

    RewriteCond %{REQUEST_METHOD} ^(OPTIONS)
    RewriteRule .* - [F]
    

    为此,请确保已启用mod_rewrite,并且在这些行之前使用RewriteEngine On

  2. # 2 楼答案

    无法使用“重写条件”禁用选项方法。 必须使用LimitExcept指令禁用

    下面是可以添加到Apache配置外部的代码段:

    <Location />
        <LimitExcept GET POST>
            order deny,allow
            deny from all
        </LimitExcept>
    </Location>
    

    请不要忘记重新启动web服务器:)