如何从.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!
答案 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
(除非您向重定向此类直接请求添加其他指令)。