Ostatnio zmodyfikowano 19:39, 25 mar 2011

Przekierowanie na inną stronę

Jak przekierować na inną stronę www


HTML

<head>
   <meta http-equiv="refresh" content="5;url=http://nowy_adres/">
</head>


PHP

<?php
   header('location: http://nowy_adres/');
?>