我希望apache返回状态代码200以响应特定路径上的发布请求
e.g。 / API / mypath中/富
这是否可以使用RewriteRule?
答案 0 :(得分:7)
在htaccess中尝试以下代码。
RewriteEngine on
RewriteCond %{THE_REQUEST} POST /api/mypath/foo [NC]
RewriteRule ^ - [R=200]
如果使用POST方法访问它,将返回/ api / mypath / foo的200ok状态。
答案 1 :(得分:-3)
我现在正在使用nginx 这是它在nginx中的完成方式
location / {
return 200 '' ;
access_log off;
}