如何让 apache 在 url 的帖子上返回状态 200 响应代码

问题描述 投票:0回答:2

我希望 apache 返回状态代码 200 以响应特定路径上的 post 请求

例如

/api/mypath/foo

这可以通过 RewriteRule 实现吗?

apache .htaccess mod-rewrite
2个回答
11
投票

在 htaccess 中尝试以下代码。

RewriteEngine on

RewriteCond %{THE_REQUEST} POST /api/mypath/foo [NC]
RewriteRule ^ - [R=200]

如果使用 POST 方法访问 /api/mypath/foo,这将返回 200ok 状态。


-3
投票

我现在使用的是nginx 这就是它在 nginx 中的完成方式

location  / {
    return 200 '' ;
    access_log off;
  }
© www.soinside.com 2019 - 2024. All rights reserved.