0

everytime I go to our current site www.example.com or example.com I would like it to redirect to https://www.example.com .. should I do this via DNS (if so how? do i add a new a name or cname record) or do I need to do this in the apache configurations?

Thanks

Tyler Evans
  • 567
  • 1
  • 8
  • 25

1 Answers1

0

Add this to your .htaccess file, in the folder you wish to redirect from.

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
Anton Gildebrand
  • 3,641
  • 12
  • 50
  • 86