Blog

22 de June de 2023

Force HTTPS

Forçar o HTTPS

Undoubtedly, the SSL certificate is one of the criteria that guarantees the security of the visitor on a website, allowing access via the HTTPS protocol, however, nothing prevents the visitor from accessing via HTTP. I'm going to show you how to force a redirect to HTTPS through PHP code. Let's go there?

To do this, it's simple, just put the code at the top of the site:

<?php 
	if (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] !== 'on') {
		if(!headers_sent()) {
			header("Status: 301 Moved Permanently");
			header(sprintf(
				'Location: https://%s%s',
				$_SERVER['HTTP_HOST'],
				$_SERVER['REQUEST_URI']
			));
			exit();
		}
	}
?>
Share:
Others

Tips

Os arquivos do Pen Drive sumiram!

Pen Drive files are gone!

View more

Exemplo de PSD

PSD example

View more

Iniciando um Projeto em React

Iniciando um Projeto em React

View more