Sử dụng mod_rewrite không phải là cách được đề xuất thay vào đó sử dụng máy chủ ảo và chuyển hướng.
Trong trường hợp, nếu bạn có xu hướng sử dụng mod_rewrite:
RewriteEngine On
# This will enable the Rewrite capabilities
RewriteCond %{HTTPS} !=on
# This checks to make sure the connection is not already HTTPS
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
# This rule will redirect users from their original location, to the same
location but using HTTPS.
# i.e. http://www.example.com/foo/ to https://www.example.com/foo/
# The leading slash is made optional so that this will work either in
# httpd.conf or .htaccess context
Tham khảo: Wiki httpd - RewriteHTTPToHTTPS
Nếu bạn đang tìm kiếm Chuyển hướng vĩnh viễn 301, thì cờ chuyển hướng phải là,
R=301
vì vậy RewriteRule sẽ như thế nào,
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]