Ben HTTP_HOST veya PHP-komut ile SERVER_NAME dayalı belirli bir yola yönlendirmek için çalışıyorum.
Ben bu komut denedim:
1.
$domain = $_SERVER["SERVER_NAME"];
if (($domain == "example.dk") ||
($domain == "www.example.dk")) {
header("location: /index.php/da/forside");
}
?>
2.
switch ($host) {
case 'example.dk':
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.dk/index.php/da/forside/");
exit();
case 'www.example.dk':
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.dk/index.php/da/forside/");
exit();
default:
header("Location: http://www.example.se");
exit();
}
?>
Ve diğer benzer komut. Sonsuza sayfa yüklenirken veya tarayıcı ya bazı yönlendirme hatası döndürür.