“PHP 301 Redirección” Código de respuesta

PHP 301 Redirección

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

301 redirigir http a https

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

Respuestas similares a “PHP 301 Redirección”

Preguntas similares a “PHP 301 Redirección”

Más respuestas relacionadas con “PHP 301 Redirección” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código