URL Forwarding Question!!!

by Ryan L
5 replies
Hey Fellow Warriors!!

Quick Question!

So I have a url which I need to forward to 1 of several urls ---> Example!

www.mywebsite.com ----forwards to ---> www.othersite.com
or ---> www.secondwebsite.com
or ---> www.thridwebsite.com

Is there a php code or script which I can use to forward traffic to various sites?
PLEASE help! thank you!
#forwarding #question #url
  • Profile picture of the author Istvan Horvath
    Google is your friend... A quick search brought up this:

    <?php
    $urls = array("www.site1.com",
    "www.site2.com",
    "www.site3.com");
    $url = $urls[array_rand($urls)];
    header("Location: http://$url");
    ?>
    Signature

    {{ DiscussionBoard.errors[1816791].message }}
  • Profile picture of the author innocent07
    Banned
    Originally Posted by Ryan L View Post

    Hey Fellow Warriors!!

    Quick Question!

    So I have a url which I need to forward to 1 of several urls ---> Example!

    www.mywebsite.com ----forwards to ---> www.othersite.com
    or ---> www.secondwebsite.com
    or ---> www.thridwebsite.com

    Is there a php code or script which I can use to forward traffic to various sites?
    PLEASE help! thank you!
    You mean by rotating them?

    I think there was one in my favourites, let me dig it out
    {{ DiscussionBoard.errors[1816794].message }}
  • Profile picture of the author Ryan L
    I was trying out your PHP code and it didnt seem to work?
    Any other suggestions for URL forwarding/rotating!?
    {{ DiscussionBoard.errors[1816991].message }}
    • Profile picture of the author Dennis Gaskill
      Originally Posted by Ryan L View Post

      I was trying out your PHP code and it didnt seem to work?
      Any other suggestions for URL forwarding/rotating!?
      You do realize you have to name your page with a .php extension instead of .html for this to work, don't you?
      Signature

      Just when you think you've got it all figured out, someone changes the rules.

      {{ DiscussionBoard.errors[1817119].message }}
  • Profile picture of the author Istvan Horvath
    I just tested it 2 minutes ago (not before, I have to admit) but it works.
    Signature

    {{ DiscussionBoard.errors[1817107].message }}

Trending Topics