Ostatnio zmodyfikowano 19:42, 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/');
?>


js