如何透過HTML標籤實現網域轉址?
#20190920更新建議使用301轉址,SEO效果較佳
1 min readAug 6, 2019
在欲轉換頁面的 <head>
與 </head>
之中加入以下Meta標籤
<meta http-equiv="refresh" content="0; url=http://abc.com" />
<link rel="canonical" href="http://abc.com" /><meta> 中的 content 表示:在 0 秒後重新整理到 http://abc.com。
<link> 中的 canonical 表示標準網址。臨時轉址時,可不加此行。