PHP – Sayfa yönlendirme nasıl yapılır?

PHP ile bir sayfa yönlendirme yapabilmek için php’nin headers fonksiyonu kullanılır. Metodu ise Location kullanılır.

Belli bir süre sonrası sayfa yönlendirilmesi isteniyorsa;

<?php
header("refresh:5;url=https://btomer.com/");
die('
<article>
    <h2>BTOMER</h2>
    <div>
        <p>Sitemiz taşındı. 5 saniye sonra BTOMER sitesine yönlendirileceksiniz. Yönlendirilmiyor ise <a href="https://btomer.com">buraya tıklayınız.</a></p>
        <p>BTOMER</p>
    </div>
</article>');
?>

Süresiz yani geri sayım olmadan direkt sayfa yönlendirmesi isteniyorsa;

<?php
    header ("Location:https://btomer.com"); 
 ?>

İyi kodlamalar 🙂

Leave a Reply