Switching to HTTPS from HTTP
-
Hi,
I have switched my website from http to https but now I my facing a problem when I type URL with www ( e.g https://www.example.com) in browser that is working fine but when I type URL without www like https://example.com "This connection is untrusted" error is showing .
All I want to is redirect https://example.com to https://www.example.com.
Please let me know how can I redirect?
Thanks
-
I beleive editing the .HTAccess file will possibly resolve this issue.
You need to push users via a redirect like the below if on an apache server. Hope this helps.RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] -
What Tim said.
And be sure to add it again on Webmaster tools