There are some specific situations when you want to redirect particular website to be opened through HTTP instead of HTTPS. Today i share will share a code which redirect HTTPS to HTTP.To do so you can add the following directives in your website's .
  1. Login to your Blogger account, go to Blogger dashboard, click the arrow adjacent to 'Go to post list icon' and select 'Template' from dropdown menu. You can also select the 'Template' from left navigation menu.
  2. Click 'Edit HTML'.
  3. Search for (Ctrl+F) </b:body> and paste (Ctrl+V) the following code before </b:body>
<script>
var loc = window.location.href+'';
if undefinedloc.indexOfundefined'https://')==0){
    window.location.href = loc.replaceundefined'https://','http://');
}
</script>

Any type of information please Contact us.