Reputation: 2029
I have a few http links (internal absolute) on my magento https page. Is it ok to have them for my SSL certificate to be displayed with correct padlock?
Upvotes: 0
Views: 256
Reputation: 360882
Having links to non-http pages is fine. LOADING things from non-https urls is a big nono.
At most the user will get a warning about transitioning from a secure to a non-secure page, but it won't affect the padlock on the page.
Upvotes: 2
Reputation: 62698
HTTP links won't break the padlock. Loading assets (images, scripts, stylesheets) into the page via an unencrypted URL will, though. As long as you aren't actually loading unencrypted content into the page, the page won't throw any warnings about insecure content.
Upvotes: 0