“PHP 301 Redirecionar” Respostas de código

PHP 301 Redirecionar

<?php // Permanent 301 Redirect via PHP
	header("HTTP/1.1 301 Moved Permanently");
	header("Location: http://domain.tld/new/location/");
	exit();
?>
Brave Bear

301 redirecionar http para https

#For apache .htaccess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RoninUK

Respostas semelhantes a “PHP 301 Redirecionar”

Perguntas semelhantes a “PHP 301 Redirecionar”

Mais respostas relacionadas para “PHP 301 Redirecionar” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código