Php Sayfa Yönlendirme | Genel

Merhaba, ASP’de kullanılan Response.Redirect işleminin PHP’de aşağıdaki şekilde kullanabiliyoruz:

header("Location: http://www.zamkinos.net/blog");

Örnek bir php sayfası da aşağıdaki şekilde olabilir:

index.php

<?php
	header("Location: http://www.zamkinos.net/blog");
	die();
?>

Selamlar.

Leave a Reply

Your email address will not be published. Required fields are marked *