如何将mailto行为添加到HTTP响应?

时间:2014-03-05 09:52:23

标签: http firefox

我想使用HTTP 303响应重定向到mailto方案URI。

这适用于Safari和Chrome,但在Firefox中我留下了空白页面。我猜测Firefox会回复303响应,而Safari和Chrome会在后台打开mailto URI并保持页面原样。

HTML页面:

<a href="/mailto/joe">email joe</a>

服务器响应:

$ curl -i -X GET http://example.com/mailto/joe
HTTP/1.0 303 See Other
Location: mailto:joe@example.com
Content-Length: 0
Server: Werkzeug/0.9.4 Python/2.7.5
Date: Wed, 05 Mar 2014 09:19:05 GMT

如何让Firefox的行为与Safari和Chrome一样?

0 个答案:

没有答案