2018年11月19日 星期一

使用 Apache mod_rewrite 將 Http 重新導向 Https


在 .htaccess 加入以下內容即可

 RewriteEngine On
 RewriteBase /
 RewriteCond %{SERVER_PORT} 80
 RewriteRule ^(.*)$ https://yourURL/$1 [R=301,L]



沒有留言: