搜尋引摯
網站管理
網路服務
商業
軟體
程式開發
2005
23
11月
- Posted by citypig at 11:21 pm (743 views)
- No comments published
- Filed under: bookmark, google
<head> <meta http-equiv=refresh content="0;url=http://host.domain.tld/path/to/"> </head>
<script language="JavaScript"> <!-- window.location.href = "http://host.domain.tld/path/to/"; //--> </script>
<?php
header("Location: http://host.domain.tld/path/to/");
?>
(轉址前不可有任何資料輸出)
#!/usr/bin/perl -w print "Location: http://host.domain.tld/path/to/ \n\n";
(轉址前不可有任何資料輸出)
#!/usr/bin/perl -w
use CGI qw/:standard/;
my $CGI = CGI->new();
print $CGI->redirect("http://host.domain.tld/path/to/");
(轉址前不可有任何資料輸出)