.htaccess配置301跳转https www
微站长
3年前
884
0
Apache环境下配置.htaccess文件:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{SERVER_PORT} !^443$ RewriteCond %{HTTP_HOST} ^vzzw.com$ RewriteRule ^(.*)$ https://www.vzzw.com/$1 [R=301,L] </IfModule>
THE END
评论列表