Whats the fastest way to do a redirect?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • clickhappy
    Confirmed User
    • Mar 2004
    • 4027

    #1

    Whats the fastest way to do a redirect?

    I want to put a blank redirect page between my gallery ads and the sponsor, so the sponsor doesnt see my ads and steal my text and ideas, and show it to newbies to give them ideas (its happened twice).

    But I dont want a redirect thats going to hang and then the surfers get tired or annoyed and leave.

    So whats the best way to put a redirect, or just a barrier between my galleries and the sponsor?
  • FuqALot
    Confirmed User
    • Dec 2001
    • 3817

    #2
    I use php for this.

    Then I link from my pages to the sponsor by linking to: redir.php?sponsorname
    Redir.php has an array with sponsornames and sites and then redirs to the right site. Your sponsor will then see the redir.php site as the ref.

    Comment

    • Manowar
      jellyfish  
      • Dec 2003
      • 71528

      #3
      i use 403

      Comment

      • Downtime
        Confirmed User
        • May 2004
        • 7320

        #4
        an Easy Button from Staples.
        #27024067

        Comment

        • Tom_PM
          Porn Meister
          • Feb 2005
          • 16443

          #5
          php header: location?

          btw: that sucks that someone is showing your pages as a sample to help others without your permission. I wouldnt like that at all, nor would I do it.
          43-922-863 Shut up and play your guitar.

          Comment

          • XxXotic
            Confirmed User
            • Jun 2002
            • 8500

            #6
            PHP Code:
            <?php
            header("Location: http://www.yoursite.com");
            exit;
            ?>
            name it whatever .php
            Oxeo - Serious Hosting For Serious Webmasters. iCQ:135.887013

            Comment

            • clickhappy
              Confirmed User
              • Mar 2004
              • 4027

              #7
              awesome thanks guys

              Comment

              • --MARIAN--
                Confirmed User
                • Apr 2002
                • 298

                #8
                I use 404 for redirection. I'm not much into servers and stuff but I was told so by an apache administrator

                Comment

                • 4Pics
                  Confirmed User
                  • Dec 2001
                  • 7952

                  #9
                  if you do header redirect, it will still carry the url, so the sponsor can still go see the text. You need to hide the referring url which i'm not sure how to do.

                  Comment

                  • CyberHustler
                    Masterbaiter
                    • Feb 2006
                    • 28788

                    #10
                    Originally posted by XxXotic
                    PHP Code:
                    <?php
                    header("Location: http://www.yoursite.com");
                    exit;
                    ?>
                    name it whatever .php
                    IS THAT LIKE AN EXIT CONSOLE OR SOMESHIT?
                    “If you can convince the lowest white man he’s better than the best colored man, he won’t notice you’re picking his pocket. Hell, give him somebody to look down on, and he’ll empty his pockets for you.”

                    Comment

                    • 4Pics
                      Confirmed User
                      • Dec 2001
                      • 7952

                      #11
                      Originally posted by BuySexProducts
                      IS THAT LIKE AN EXIT CONSOLE OR SOMESHIT?
                      no that's how in php you do a header redirect, where the user won't see the redirect, the other way is with a meta refresh.

                      Comment

                      • Brad Gosse
                        Confirmed User
                        • Jan 2002
                        • 2616

                        #12
                        .htaccess is faster


                        Redirect /links_in/001/ http://url.com
                        Redirect /links_in/002/ http://url.com
                        Free Clipart

                        Comment

                        • Sinstar
                          Confirmed User
                          • Mar 2006
                          • 1206

                          #13
                          Originally posted by Downtime
                          an Easy Button from Staples.
                          rofl, I almost choked on that one :P

                          Comment

                          • Calvinguy
                            Confirmed User
                            • Oct 2002
                            • 1752

                            #14
                            The only way to hide the referring url is to use a meta refresh on a landing page.

                            Are you hiding something from the sponsor?

                            Comment

                            • datatank
                              Confirmed User
                              • Aug 2004
                              • 5471

                              #15
                              Originally posted by 4Pics
                              no that's how in php you do a header redirect, where the user won't see the redirect, the other way is with a meta refresh.
                              Java script will usually not show the referer

                              Comment

                              Working...