Gizlen adlı üyeden alıntı: mesajı görüntüle
denedim dostum ama hata verdi.
Warning: Cannot modify header information - headers already sent by (output started at /home/videolar/public_html/ara.php:1) in /home/videolar/public_html/ara.php on line 4
ara.php nin içerisinde sadece bu kodlar olmalı.
Eğer yinede olmuyorsa aşağıdaki şekilde kullan.
<?php
ob_start();
$kelime = $_GET['kelime'];
if($kelime != NULL){
header("Location: http://www.siteadi.com/dizin/".$kelime.".html");
}else{
header("Location: http://www.siteadi.com");
}
ob_end_flush();
?>