武汉SEO
时光静好,与君语;细水流年,与君同;繁华落尽,与君老...

武汉SEO>正文

利用.htaccess让顶级域名301至www域名代码

2018-09-12 11:08

最常见的写法

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} ^0937.biz [NC]
RewriteRule ^(.*)$ https://www.0937.biz/$1 [L,R=301]


更通用的写法

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]


wdcp双引擎下,以上方法均不适用,首页和列表页没问题,文章页不生效,后考虑切换至apache单引擎。


本文链接:https://www.0937.biz/post-344.html