Http access allowed

You can access sites http:// access, does not force https:// ;

Can you please enforce https:// for sites

http://mindsgaming.glitch.me/

Update Answer:

var loc = window.location.href+'';
if (loc.indexOf('http://')==0){
    window.location.href = loc.replace('http://','https://');
}

You have to manually force HTTPs in your projects. See this thread. As it should help you with your question.

1 Like

Assuming you are using the glitch.me subdomain and not a custom domain …

You may be able to write a redirection rule in the server software. This could be via custom middleware or proxy for the server (browsersync), or have an earlier stage app similar to the topic linked above to listen to the requests and redirect.