Redirecting Google Image traffic?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Makaveli
    Confirmed User
    • Feb 2001
    • 1027

    #1

    Redirecting Google Image traffic?

    Does google get pissed off over this?
  • mrwilson
    mrwilson 2.0
    • Jul 2007
    • 5122

    #2
    Not sure, but what can they do about it really?
    It's your image they have taken.
    I set all hotlinked images to redirect to the mainpage on my site.

    Comment

    • MikeB
      Confirmed User
      • Feb 2002
      • 2012

      #3
      Also how long until google dances and the image results page is jumbled around?

      Comment

      • roly
        Confirmed User
        • Aug 2002
        • 1844

        #4
        Originally posted by mrwilson
        Not sure, but what can they do about it really?
        It's your image they have taken.
        I set all hotlinked images to redirect to the mainpage on my site.
        well not saying they do, but potentially they could penalize or ban your search rankings.

        Comment

        • polle54
          Confirmed User
          • Jul 2004
          • 4626

          #5
          If you break the frames they will not keep indexing your images

          If you just perform a normal redirect of what's in the lower frame I have not seen any problem.

          I make around $5/1000 images hits by redirecting. and haven't seen any penelizing yet.
          ICQ# 143561781

          Comment

          • Phil
            Confirmed User
            • Jan 2004
            • 7659

            #6
            i don't thinks so. I use redirect script on all free tgp domains that we give out and it works fine.
            Ask Phil

            Comment

            • Makaveli
              Confirmed User
              • Feb 2001
              • 1027

              #7
              Originally posted by CAMOKAT
              i don't thinks so. I use redirect script on all free tgp domains that we give out and it works fine.
              Can I have that code?

              Comment

              • Nicky
                Too lazy to set a custom title
                • Mar 2003
                • 30071

                #8
                Originally posted by polle54
                If you break the frames they will not keep indexing your images

                If you just perform a normal redirect of what's in the lower frame I have not seen any problem.

                I make around $5/1000 images hits by redirecting. and haven't seen any penelizing yet.
                What sponsor works best for you? Obviously it's a question of niche but generaly is it dating or something?

                gfynicky @ gmail.com

                Comment

                • Phil
                  Confirmed User
                  • Jan 2004
                  • 7659

                  #9
                  Originally posted by Makaveli
                  Can I have that code?
                  Code:
                  Options +FollowSymlinks 
                  ErrorDocument 400 http://www.404.com
                  ErrorDocument 401 http://www.404.com
                  ErrorDocument 403 http://www.404.com
                  ErrorDocument 404 http://www.404.com
                  ErrorDocument 500 http://www.404.com
                  RewriteEngine On
                  RewriteOptions inherit
                  RewriteCond %{HTTP_REFERER} .*images.ask.com.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*images.google.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*msn.com/images.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*live.com/images.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*aol.com/aolcom/image.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*altavista.com/image.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*excite.com/info.xcite/search/images.*$ [NC,OR]
                  RewriteCond %{HTTP_REFERER} .*images.search.yahoo.com.*$ [NC]
                  RewriteRule .* http://www.where-to-redirect.com [R,L]
                  Ask Phil

                  Comment

                  • bigalownz
                    Confirmed User
                    • Aug 2005
                    • 1657

                    #10
                    this is what i use

                    (htaccess)

                    RewriteEngine On
                    RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?images.google
                    RewriteCond %{REQUEST_URI} !googleimages.php
                    RewriteCond %{REQUEST_URI} (.*)
                    RewriteRule /* /googleimages.php?url=%1 [R,L]

                    (googleimages.php)

                    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
                    <html><head><title>Loading Site...</title>
                    <script language="JavaScript" type="text/javascript">
                    if (top.location != location) top.location.href = 'http://<? print $_SERVER["SERVER_NAME"] . $url;?>';
                    </script>
                    <script language="JavaScript" type="text/javascript">
                    <!-- Hide from old Browsers
                    if (top != self) top.location.href = location.href;
                    // Stop hiding from old browsers -->
                    </SCRIPT>
                    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
                    </head>
                    <body>
                    <div align="center"><a href="http://<? print $_SERVER["SERVER_NAME"] . $url; ?>" target=_top class="style1">Click Here To Load The Site</a></div>
                    </body></html>
                    $100 free credit for all hosting needs

                    Comment

                    Working...