Apache 根据请求和内容类型响应的request_uri发送特定代码

apache send specific code based on request_uri of request and content-type response

提问人:It0007 提问时间:11/5/2023 更新时间:11/6/2023 访问量:50

问:

有没有办法有条件地设置 redirectMatch 404 或 rewriteRule^(.*)$ - [R=404,L],条件是例如响应 Content-Type 等于 text/html 我已经研究了mod_headers与mod_setenvif结合使用,但看起来条件只能使用请求标头,而不能使用响应标头。

使用 mod_rewrite 我已经尝试了所有可能的方法,只有mod_headers我无法像这样在响应中添加标头项 标头集 X-Custom-Header “true” “expr=%{resp:Content-Type} =~ m|text/html|”,但问题是mod_rewrite或 If 指令无法访问已添加的标头(早期处理)

谢谢你的建议

apache mod-rewrite 内容类型 mod-headers

评论


答: 暂无答案