För att med php omdirigera en url till en annan webbsida kan man använda följande kod:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.nysida.se" );
?>
allt om php
För att med php omdirigera en url till en annan webbsida kan man använda följande kod:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.nysida.se" );
?>