Redirecting Google Images traffic?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Marshal
    Biz Dev and SEO
    • Jun 2005
    • 15227

    #1

    Redirecting Google Images traffic?

    I was looking at webstats and found out I have tons of Google Images traffic. Whenever a query is made, it's sending traffic directly to the image. I'd like to send it to the page.

    For example: http://www.mysite.com/mypic.jpg -> http://www.mysite.com/something.html whenever the refferer has "images.google" in url.

    Can someone please help with .htaccess? Thanks!
    ---
    Busy ranking websites on Google...
  • geeknik
    l337 h4x0r!#%
    • Feb 2005
    • 8364

    #2
    RewriteEngine on
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} \.(gif|jpe?g|png)$ [NC]
    RewriteCond %{HTTP_REFERER} ^images.google.com$ [NC]
    RewriteRule (.*) http://whatever.com/file.html [NC]
    hacker 4 hire.

    Comment

    • StuBradley
      Confirmed User
      • Jul 2002
      • 2625

      #3
      Whenever I have surfed Google images it always links to the page the image was originally on. If you start redirecting their surfers to a totally different page you can expect the ban hammer to start swinging in your direction I would think.

      51-566-514

      Comment

      • woj
        <&(©¿©)&>
        • Jul 2002
        • 47880

        #4
        why not just use break-out-of-frame javascript code?
        Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
        Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
        Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager

        Comment

        • Marshal
          Biz Dev and SEO
          • Jun 2005
          • 15227

          #5
          I don't know what happened, but thumbs on Google Images links to the original images, but not to the original pages anymore. At least for me. Btw, woj, can you post that js code?
          ---
          Busy ranking websites on Google...

          Comment

          • The Duck
            Adult Content Provider
            • May 2005
            • 18243

            #6
            Alright thanks.
            Skype Horusmaia
            ICQ 41555245
            Email [email protected]

            Comment

            • donborno
              Confirmed User
              • Jan 2007
              • 374

              #7
              Originally posted by StuBradley
              Whenever I have surfed Google images it always links to the page the image was originally on. If you start redirecting their surfers to a totally different page you can expect the ban hammer to start swinging in your direction I would think.
              Excactly, Google won't like it, and it won't like it if you break out of frame[1], which was recomended in this thread. After doing so, I lost all my image traffic.

              [1]
              Code:
              if (top.location != location) {
                  top.location.href = document.location.href;
              }
              Last edited by donborno; 08-05-2007, 05:19 AM.

              Comment

              Working...