redirect http to https ດ້ວຍ .htaccess

redirect http to https ດ້ວຍ .htaccess

ຫາກຕ້ອງການຈະ redirect ຜູ້ເຂົ້າຊົມທັງໝົດຈາກ http:// ໄປ https:// ທັງໝົດໃຫ້ສ້າງໄຟລ .htaccess ແລ້ວນໍາ code ດ້ານລຸ່ມໄປໃສ່ໄດ້ເລີຍ ໂດຍຈະມີການ redirect ທັງຊື່ domain ແລະ parameter ໄປນໍາທັງໝົດ ເຊັ່ນ

http://huk-com.la/hello — redirect –> https://huk-com.la/hello

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
</IfModule>