php 301.
Web sayfanızda herhangi bir bölümün adresini değiştirdiyseniz şu şekilde tanımlayabilirsiniz.
if($_SERVER[´REQUEST_URI´]==´/?eski-adres´)
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://phpkodlari.com/?yeni-adres");
exit();
}
{
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://phpkodlari.com/?yeni-adres");
exit();
}
Her programcı birgün Php yi tadacaktır
2010-01-29 09:01:22