give me a solution on this url redirection question and earn $20 epassporte.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zentz
    Confirmed User
    • Nov 2003
    • 8062

    #1

    give me a solution on this url redirection question and earn $20 epassporte.

    i want to make the urls like this http://www.arcadena.com/index.php?re...fficseller.com to redirect to http://www.arcadena.com but so the hits frrom the orginal url still get counted by a trade script.

    i know this can be done through .htaccess and within php code.

    first correct and most precise answer receives 20 bucks epass. not much but enough for an answer

    thank you
    Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

    Email: [email protected]
  • After Shock Media
    It's coming look busy
    • Mar 2001
    • 35299

    #2
    You can also just set up a meta refresh at the first domain, to redirect at 0 or 1 second to the next URL. It would count every hit and get stats hitting that first page.

    Not really htaccess

    [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

    Comment

    • redwhiteandblue
      Bollocks
      • Jun 2007
      • 2785

      #3
      Put this in your html head

      <link rel="canonical" href="http://www.arcadena.com/" />

      and then you don't need to worry about the query string, the SEs will only index the canonical URL.

      Well that's the theory...
      Interserver unmanaged AMD Ryzen servers from $73.00

      Comment

      • chaze
        Confirmed User
        • Aug 2002
        • 9774

        #4
        You might lose the tracking with htaccess, your better off with a header tag.

        <META http-equiv="refresh" content="5;URL=http://www.your-main-domain.com">

        The 5 is how many seconds before the redirect, your can change this to zero or 1 if you need to speed it up.

        If you choose mine, just use the money to get hosting and new domain here www.adult-website-hosting.com about $40 for the year. Then add a blog and get some extra marketing going.
        Like the desert needs the rain
        We do fully manged WordPress, VPS, and Servers. Adult Host Pro https://adulthostpro.com/ Since 2001

        Comment

        • Klen
          • Aug 2006
          • 32234

          #5
          Originally posted by After Shock Media
          You can also just set up a meta refresh at the first domain, to redirect at 0 or 1 second to the next URL. It would count every hit and get stats hitting that first page.

          Not really htaccess
          Yes that is correct.Htaccess would act like there was no any redirected url.
          So best solution would be simple meta tag refresh with one second wait.

          Comment

          • After Shock Media
            It's coming look busy
            • Mar 2001
            • 35299

            #6
            Well if I win let me know.

            [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

            Comment

            • zentz
              Confirmed User
              • Nov 2003
              • 8062

              #7
              there must be a better solution then meta refresh.

              refreshing the page too often willl make it annoying to surfer, if i put refresh on zero or 1 second the webpage wont even be clickable or readable cause of so many refreshes.
              Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

              Email: [email protected]

              Comment

              • After Shock Media
                It's coming look busy
                • Mar 2001
                • 35299

                #8
                Originally posted by zentz
                there must be a better solution then meta refresh.

                refreshing the page too often willl make it annoying to surfer, if i put refresh on zero or 1 second the webpage wont even be clickable or readable cause of so many refreshes.
                I do not understand why you think that. I am no programmer nor tech but I can not see it working any other way. You could have a longer refresh period. I am pretty sure multiple surfers do not see the same identical page.

                [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

                Comment

                • darksoul
                  Confirmed User
                  • Apr 2002
                  • 4997

                  #9
                  Open index.php
                  locate the part that tracks the reffer
                  after that add:
                  Code:
                  if ($_GET['ref']) {
                       Header("Location: http://www.arcadena.com/");
                  }
                  1337 5y54|)m1n: 157717888
                  BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                  Cambooth

                  Comment

                  • darksoul
                    Confirmed User
                    • Apr 2002
                    • 4997

                    #10
                    Originally posted by After Shock Media
                    I do not understand why you think that. I am no programmer nor tech but I can not see it working any other way. You could have a longer refresh period. I am pretty sure multiple surfers do not see the same identical page.
                    the problem with this approch is that it refreshes regardless of the presence of ref=xxx.com
                    1337 5y54|)m1n: 157717888
                    BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                    Cambooth

                    Comment

                    • zentz
                      Confirmed User
                      • Nov 2003
                      • 8062

                      #11
                      Originally posted by darksoul
                      Open index.php
                      locate the part that tracks the reffer
                      after that add:
                      Code:
                      if ($_GET['ref']) {
                           Header("Location: http://www.arcadena.com/");
                      }
                      <head><?php include("tp/ssi_in.php")?>

                      this is the code tracks incoming hits. where do i include the IF exactly?

                      tnx
                      Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

                      Email: [email protected]

                      Comment

                      • darksoul
                        Confirmed User
                        • Apr 2002
                        • 4997

                        #12
                        Originally posted by zentz
                        <head><?php include("tp/ssi_in.php")?>

                        this is the code tracks incoming hits. where do i include the IF exactly?

                        tnx
                        Code:
                        <head><?php include("tp/ssi_in.php")?> 
                        <? if ($_GET['ref']) {
                               Header("Location: http://www.arcadena.com/");
                        }
                        ?>
                        1337 5y54|)m1n: 157717888
                        BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                        Cambooth

                        Comment

                        • After Shock Media
                          It's coming look busy
                          • Mar 2001
                          • 35299

                          #13
                          PS if it is a meta refresh. I do not have epass and did not want the cash. Just give it to whoever else helps the most or donate it to the adult toys for tots program.

                          [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

                          Comment

                          • zentz
                            Confirmed User
                            • Nov 2003
                            • 8062

                            #14
                            Originally posted by darksoul
                            Code:
                            <head><?php include("tp/ssi_in.php")?> 
                            <? if ($_GET['ref']) {
                                   Header("Location: http://www.arcadena.com/");
                            }
                            ?>
                            works perfect. pls mail me your epass [email protected]

                            or just post here.

                            tnx.
                            Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

                            Email: [email protected]

                            Comment

                            • zentz
                              Confirmed User
                              • Nov 2003
                              • 8062

                              #15
                              Originally posted by After Shock Media
                              PS if it is a meta refresh. I do not have epass and did not want the cash. Just give it to whoever else helps the most or donate it to the adult toys for tots program.
                              i wont use meta tags as it is not the best solution. tnx for your suggestion though.
                              Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

                              Email: [email protected]

                              Comment

                              • After Shock Media
                                It's coming look busy
                                • Mar 2001
                                • 35299

                                #16
                                Your thread title was misleading then, lol. Just busting your chops. Good luck and I look forward to see how it is completed.

                                [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

                                Comment

                                • zentz
                                  Confirmed User
                                  • Nov 2003
                                  • 8062

                                  #17
                                  Originally posted by After Shock Media
                                  Your thread title was misleading then, lol. Just busting your chops. Good luck and I look forward to see how it is completed.
                                  yes sorry i forgot to include "no retarded solutions" in a description.
                                  Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

                                  Email: [email protected]

                                  Comment

                                  • San
                                    So Fucking Banned
                                    • Jan 2004
                                    • 790

                                    #18
                                    Originally posted by After Shock Media
                                    Your thread title was misleading then, lol. Just busting your chops. Good luck and I look forward to see how it is completed.
                                    wow, why so butthurt about $20 ?

                                    Comment

                                    • After Shock Media
                                      It's coming look busy
                                      • Mar 2001
                                      • 35299

                                      #19
                                      Originally posted by San
                                      wow, why so butthurt about $20 ?
                                      I am not butt hurt, damn does no one have any humor any more. Before he even said no (pretty sure) I already had told him to donate it.

                                      He has to act hostile and say it was retarded, despite someone else agreeing. He could be joking around too but I can not tell by reading what he wrote. Then you say I am butt hurt.

                                      I even posted LOL and I am just busting your chops. I am interested in the solution. I am far from butt hurt. I suggest you read the thread again.

                                      [email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]

                                      Comment

                                      • zentz
                                        Confirmed User
                                        • Nov 2003
                                        • 8062

                                        #20
                                        i was joking as well. cheers.
                                        Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

                                        Email: [email protected]

                                        Comment

                                        Working...