ssl域名做301的方法:
在apache环境下,新建一个.htaccess文件,添加以下代码,将.htaccess文件放在网站根目录即可,代码如下:
#将https访问301重定向至httpRewriteEngine onRewriteBase /RewriteCond %{SERVER_PORT} !^80$RewriteRule ^.*$ http://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
#将https访问301重定向至http
RewriteEngine on
RewriteBase /
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^.*$ http://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]