0
我有使用Apache httpd上託管的mod_perl編寫的web服務。 在處理程序中,我正在返回,但我得到200響應代碼。我沒有在迴應身上設置任何東西。如何在mod perl中返回204響應代碼
sub handler {
return Apache2::Const::HTTP_NO_CONTENT;
}
捲曲是給我200響應代碼
HTTP/1.1 200 OK
Date: Fri, 10 Jan 2014 09:32:26 GMT
Server: Apache
Content-Length: 0
Connection: close
Content-Type: text/plain
謝謝Dhruv。有用 – maheshkanse