[PHP][HTML][JS] 網頁自動轉址/導向頁面範例 301 & 302

HTML

<meta http-equiv="refresh" content="0;url=http://code.yidas.com" />

Javascript

<script>location.href="http://code.yidas.com";</script>

PHP

302 暫時轉址

header('Location: http://code.yidas.com');

預設就是302

301 永久轉址

header("HTTP/1.1 301 Moved Permanently");
header("Location: http://code.yidas.com");

301轉址只能為Web Server端註記

Leave a Reply

Your email address will not be published. Required fields are marked *