htaccess HTTP 200消息体

时间:2017-10-04 20:02:42

标签: apache .htaccess http

如何从.htaccess向我的HTTP 200响应添加邮件正文? 喜欢Hello world! :


HTTP/1.1 200 OK
Date: Sun, 10 Oct 2010 23:26:07 GMT
Server: Apache/2.2.8 (Ubuntu) mod_ssl/2.2.8 OpenSSL/0.9.8g
Last-Modified: Sun, 26 Sep 2010 22:04:35 GMT
ETag: "45b6-834-49130cc1182c0"
Accept-Ranges: bytes
Content-Length: 13
Connection: close
Content-Type: text/html

Hello world!

1 个答案:

答案 0 :(得分:0)

这不是你单独在.htaccess做的事情。没有直接请求返回“Hello World!”的文件。响应,您在.htaccess中可以执行的操作将请求的URL 重写为返回“Hello World!”的文件。响应。

例如,给定http://example.com/foo的请求,您可以使用.htaccess中的mod_rewrite将此请求重写为输出响应的纯文本文件。例如:

/.htaccess

RewriteEngine On
RewriteRule ^foo$ hello-world.txt [L]

/hello-world.txt

Hello World!

当然,您可以直接请求http://example.com/hello-world.txt(除非您向重定向此类直接请求添加其他指令)。