进无止境

利用301重定向实现http站到https站的跳转


网站根目录新建.htaccess文件,或者在原有的.htaccess文件后面添加如下代码:

#301 redirection of https sites
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTP_USER_AGENT} !MSIE/[1-8]\. [NC]
RewriteCond %{HTTP_HOST} mspace.tech
RewriteRule ^.*$ https://mspace.tech%{REQUEST_URI} [L,R=301]

重启Apache, OK : )

发表评论

您的电子邮箱地址不会被公开。