Redirecting php pages

by 2 replies
3
Can anyone please let me know the code redirect a php page
to another url?

Thanks
#main internet marketing discussion forum #pages #php #redirecting
  • Try this:
    <?php
    // Permanent redirection
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: http://www.another-url.com/");
    exit();
    ?>
    • [ 1 ] Thanks
    • [1] reply
    • Excellent thanks - worked like a dream!

Next Topics on Trending Feed