HTTP 301 范例(PHP)
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://plog.longwin.com.tw/');
exit;
?>
HTTP 302 范例(PHP)
<?php
header("Location: http://plog.longwin.com.tw/");
exit;
?>
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://plog.longwin.com.tw/');
exit;
?>
<?php
header("Location: http://plog.longwin.com.tw/");
exit;
?>