1. 程式人生 > >apache 從http請求跳轉到https

apache 從http請求跳轉到https

域名備案已經準備好!!!

1、申請ssl證書在騰訊雲申請ssl證書很快(大概2分鐘)

2、下載證書,按騰訊雲指示完成配置,主要是域名新增一個解析

3、伺服器端上傳證書(步驟:phpstudy 配置https已經有了,這裡就不多說)

4、修改conf/httpd.conf中:

LoadModule rewrite_module modules/mod_rewrite.so  前面#去掉

AllowOverride None 修改為 AllowOverride All

5、在專案入口目錄下新增.htaccess

並加入

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
</IfModule>