我希望 apache 返回状态代码 200 以响应特定路径上的 post 请求
例如
/api/mypath/foo
这可以通过 RewriteRule 实现吗?
在 htaccess 中尝试以下代码。
RewriteEngine on
RewriteCond %{THE_REQUEST} POST /api/mypath/foo [NC]
RewriteRule ^ - [R=200]
如果使用 POST 方法访问 /api/mypath/foo,这将返回 200ok 状态。
我现在使用的是nginx 这就是它在 nginx 中的完成方式
location / {
return 200 '' ;
access_log off;
}