Ubuntu Apache环境下将http重定向为https

打开网站配置文件,比如 /etc/apache2/sites-available/000-default.conf ,
在 <\VirtualHost *:80><\VirtualHost> 标签内随便一个地方加入以下三行

RewriteEngine on
RewriteCond   %{HTTPS} !=on
RewriteRule   ^(.*)  https://%{SERVER_NAME}$1 [L,R=301]

最后重启

sudo service apache2 restart

你可能感兴趣的:(Ubuntu Apache环境下将http重定向为https)