我想使用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一样?