I have Drupal 6 site.
Recently, I have purchased SSL from my hosting provider & configured on the hosting server.
How do I configure in Drupal,the complete site to use HTTPS ?
Whether the user enters
All such request should be redirected to https://www.hello.com
Enabling the HTTPS for the entire site.
Step 1:-
Step 2:-
this>>
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www.domainname\.com*
RewriteRule ^(.*)$ https://domainname.com/$1 [L,R=301]
Save & upload.
Thats it.
Useful Links:-