このページはAjaxライブラリの1つであるprototype.jsのリファレンスです。
このリファレンスはver 1.4.0を基準としています。
Location: http://example.com/
ついでにサンプルCGI(perl):Status: 301 Moved Permanently Content-type: text/html Location: http://example.com/
#!/usr/bin/perl -T use CGI; my $q = new CGI; print $q->header(-status => "301 Moved Permanently", -type => "text/html", -charset => 'UTF-8', -location => "http://example.com/"); ...
<html><head> <META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://example.com/"> </head></html>
<html> <head> <META HTTP-EQUIV="Refresh" CONTENT="0;URL=http://example.com/"> ... </head> <body> <h1>移転しました!</h1> <a href="http://example.com/">http://example.com/</a> </body> </html>
RedirectPermanent /blog/ http://blog.example.com/