Buộc chuyển tiếp HTTP To HTTPS bằng htaccess

  Lập Trình

Thêm mã sau vào .htaccess, lưu ý nó phải được đặt ở đầu file

# Force HTTPS on all pages
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>