[Réglé] Avoir une seul adresse pour ma page accueil

WRInaute accro
cirvent a dit:
je m'arrive pas a rediriger /index.php vers / en passant par .htaccess

Alors passe par php...

Code:
<?php
if($_SERVER['REQUEST_URI'] == "/index.php") 
	{
	header("Status: 301 Moved Permanently", false, 301);
	header("Location: http://".$_SERVER['HTTP_HOST']."/");
	exit;
		die("Redirection");
	}
?>

;)
 
Discussions similaires
Haut