Mobile app version of vmapp.org
Login or Join
Goswami781

: HTTPS implementation. Should I change pre-head tags? I implemented HTTPS on all the webpages of my website. My browser tells me it's a "Secure connection" with a green signal. I double-checked

@Goswami781

Posted in: #Html #Https

I implemented HTTPS on all the webpages of my website. My browser tells me it's a "Secure connection" with a green signal. I double-checked that all the images, CSS files, JS files, etc. were HTTPS, and I think it's everything ok.

However, I'm still using the following pre-head code:

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>


Should I change this two HTTP calls from 'http' to 'https'?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Goswami781

1 Comments

Sorted by latest first Latest Oldest Best

 

@Karen161

Like Simon Hayter said, those are not links to resources but identifiers (URIs and not URLs). The browser will not fetch anything at these endpoints, and they must remain as is because they identify something special with a specific sense, and it may not work anymore if you replace http by https.

You apply the same response to basically any attribute that is xmlns or xmlns:whatever. The ns here means namespace which is a kind of identifier used in XML world with which HTML has ties.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme