301リダイレクト .htaccess記述方法

U3
2019/7/12
2024/11/7

サイトリニューアル時には必ず設定する!!


WordPressで301リダイレクトを.htaccessで行う方法とは


https://php-labs.com/create-site/seo/301-redirect-of-htaccess-in-wordpress.html


ワードプレスの記述の前に書く。


コード


RewriteEngine on
RewriteCond %{HTTP_HOST} ^(example.com)(:80)? [NC]
RewriteRule ^(.*) http://www.example.com/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://www.example.com/$1 [R=301,L]



ページからページへ


RewriteRule ^/old-page.html$ http://www.example/new-page.html [R=301,L]



参考:

https://digital-marketing.jp/creative/site-renewal-301-redirect/


コメント

コメントはまだありません。