如何设置Apache以返回204代码?

时间:2010-04-28 22:50:39

标签: apache

如何设置Apache以返回204(无内容)而不是某个URL的404代码?

1 个答案:

答案 0 :(得分:9)

将Redirect文档与RedirectMatch文档放在一起,我们看到是的,我们可以发回自定义204。这是一个快速示例,对任何匹配foo的请求以及其后的任何字符进行响应204。

 #RedirectMatch example using mod_alias 
 RedirectMatch 204 foo(.*)$

从这里开始 http://www.lowlevelmanager.com/2009/07/returning-apache-204.html