Chuyển từ http đến https (ok) .htaccess
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://localhost/abc/$1 [R=301,L]
</IfModule>
Last updated
Was this helpful?
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://localhost/abc/$1 [R=301,L]
</IfModule>
Last updated
Was this helpful?