How to implement HSTS in my website

天大地大妈咪最大 提交于 2021-01-01 07:06:13

问题


I've a website (domain from godaddy and hosted in hostgator). As I updated the certificates, manually, I can redirect my site to https, but it is always going to http from google search. After searching online, I got to know that Considering Strict-Transport-Security: max-age=15768000 as result of curl -i -L on target domain will work for my need as it will force a browser to open the website in https. But I'm confused about how to implement this to my website.

Can anyone help me on this ?


回答1:


Not sure this is right for Stackoverflow. Then again it covers so many topics that it doesn't fit nicely in any other StackExchange site either. So anyway will attempt to answer.

Redirects.

What do you mean "I can redirect my site to https"? You should redirect your site to https now you've gone through the hassle of setting this up so are you doing it? Or are you able to access both http and https? If so find out how to force https even if the user sets up http.

This is set up with a redirect rule on your web server. Not sure whether you have direct access to your config (e.g. .htaccess file if using Apache) or require your host provider to set this up for you.

Google search

Regarding Google Search, once you have the redirect set up, it will take some time for Google to recognise this and update the links in their search index to show the https version of the pages.

Saying that there are ways you can tell Google about this to hurry up the process:

  • Do you force a redirect to https? If not Google will decide which site to show (http or https) based on a number of factors.
  • Do you have a site map and have you updated those links to https?
  • Do you have a rel="canonical" setting in the HTML of any of your pages and is it set to the https version? This tells Google which is the real version of the page if, for example, you allow both http and https versions of the page (not recommended).
  • Have you registered the https version of your site with Google Search Console? If so are there any errors in there? You can also kick off a re-index request in here.
  • Have you set all internal links to be https or, better yet, relative links.
  • Can you update any external links to be https instead of http.

HTTP Strict Transport Security (HSTS)

This is an advanced topic so really wouldn't recommend it until you understand it more. Basically it's a HTTP Header you send back with your webpage over https to tell web browsers "hey I'm a https only site. From now on automatically translate any http requests to https automatically before you even send them to me".

It is a good security addition on top of redirects but crucially it does not replace the need for redirects. Redirecta need to be in place first to send it to https, at which point your web server can send the HSTS HTTP Header.

To set it up you send a HTTP Header like this (but only over https requests).

Strict-Transport-Security "max-age=16070400"

This can be setup in your webserver, or in your php files or any other way you can send HTTP Headers.

Be aware that this we'll prevent your site being available over http, so if you decide to turn off https for whatever reason, then you've basically blocked you're site for up to the max-age time for any browsers that have cached that setting.

For more information on HSTS see here: 301 Redirect and HSTS in .htaccess

But I really don't think that's what you are looking for here. It tells web browsers (like Google Chrome) to force https and is nothing to do with search engines (like Google Search) as, at present, they ignore this Header.



来源:https://stackoverflow.com/questions/45727909/how-to-implement-hsts-in-my-website

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!