【HTML】301 リダイレクトを使わずmeta refresh でリダイレクト

DEVELOP, Web

利用しているブログサービスなどを引っ越したい時に、301リダイレクトが使えない場合の一つの方法。てっとり早くジャンプしたい人向け。

コード

<head></head> 間にでも入れてやってください。

<link rel="canonical" href="https://kazupon.org/?p=<%topentry_no>" />
<meta <!--index_area--><!--/index_area--> http-equiv="refresh" content="3;URL=https://kazupon.org/?p=<%topentry_no>" />
 
<link rel="canonical" href="https://kazupon.org/"/>
<meta <!--index_area--><!--/index_area--> http-equiv="refresh" content="3;URL=https://kazupon.org/" />

content にはリダイレクトするまでの秒数を指定。サンプルだと3を入れてます。

Posted by kazupon