Howdo I do a php redirect?

by 3 replies
4
I'm sure this has probably been asked a million times already but, I need to find out how to do php redirects for my affiliate links. :confused:
#programming #howdo #php #redirect
  • Just like this ->

    <?php
    header("Location: http://www.trafficmystic.com");
    exit;
    ?>
    • Banned
      [DELETED]
  • Hey Ninja newbie...

    Try this




































    • [1] reply
    • As the guys above corrected posted the answer is :

      <?php
      header("Location: http://www.SiteToRedirectTo.com");
      ?>

      But a trick for young players:

      Make sure you spell the word Location with a capital "L".

      After much experience with this, some hosting (especially hosting based on certain version of windows) a lower case version wont work at all, it doesn't generate an error, it just doesn't redirect at all!

      So, to be safe all the time, make sure the word Location is spelt with an Uppercase "L"

      Hope this helps

      Bruce
  • Banned
    [DELETED]

Next Topics on Trending Feed