Is there a way to stop google from...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • spacedog
    Yes that IS me. Bitch.
    • Nov 2001
    • 14149

    #1

    Is there a way to stop google from...

    indexing images?


    How do I stop google from indexing images on my sites. Too many friggen surfers browsing the images off of google & not the pages that contain the image & it's pissing me off
  • who
    So Fucking Banned
    • Aug 2003
    • 19593

    #2
    You can redirect the visitor from google images to any page.

    Comment

    • KrisW
      For cybersex, do I need a hole in my monitor?
      • Dec 2005
      • 201

      #3
      Hotlink protect your site, that way the surfer have to load the page to se the image

      Comment

      • spacedog
        Yes that IS me. Bitch.
        • Nov 2001
        • 14149

        #4
        Originally posted by who
        You can redirect the visitor from google images to any page.


        I don't know how to do that.

        I know how to redirect on a html page, but how would I redirect visitors to images?

        I could do it via .htaccess, but that is dependant if I can get it to work with wordpress's rewrites. I've had issues with htaccess & wordpress.

        Comment

        • sonofsam
          Too lazy to set a custom title
          • Dec 2004
          • 18648

          #5
          ya bro, just call google's tech support
          I like turtles.

          Comment

          • spacedog
            Yes that IS me. Bitch.
            • Nov 2001
            • 14149

            #6
            Originally posted by KrisW
            Hotlink protect your site, that way the surfer have to load the page to se the image
            Google isnt hotlinking the image, they are displaying it with a link, click here to see full size image.

            Comment

            • spacedog
              Yes that IS me. Bitch.
              • Nov 2001
              • 14149

              #7
              Originally posted by sonofsam
              ya bro, just call google's tech support
              Yeah, & I'm sure they'll get right on it too

              Maybe I should send them a C&D like perfect 10 would

              Comment

              • sonofsam
                Too lazy to set a custom title
                • Dec 2004
                • 18648

                #8
                Originally posted by spacedog
                Yeah, & I'm sure they'll get right on it too

                Maybe I should send them a C&D like perfect 10 would
                I like turtles.

                Comment

                • Libertine
                  sex dwarf
                  • May 2002
                  • 17860

                  #9
                  Originally posted by spacedog
                  Google isnt hotlinking the image, they are displaying it with a link, click here to see full size image.
                  Same thing. Hotlink protection protects against other referers than your own site, it doesn't matter if those are links or pages your images are embedded in.
                  /(bb|[^b]{2})/

                  Comment

                  • spacedog
                    Yes that IS me. Bitch.
                    • Nov 2001
                    • 14149

                    #10
                    Originally posted by punkworld
                    Same thing. Hotlink protection protects against other referers than your own site, it doesn't matter if those are links or pages your images are embedded in.

                    I'm still trying to get that working with wordpress. I need some serious help with that. Still havent found the answer. I know how to htaccess to disallow hotlinking, but it don't work with the existing htaccess for wordpress.
                    http://www.gofuckyourself.com/showthread.php?t=552493

                    Comment

                    • Scotty.T
                      Confirmed User
                      • Nov 2004
                      • 1062

                      #11
                      This is what I am using with my WP blogs. It works between sites but I haven't checked it against google images. Don't see why it shouldn't.

                      I also use the WP rewrite for SE friendly post names.

                      RewriteEngine on
                      RewriteCond %{HTTP_REFERER} !^$
                      RewriteCond %{HTTP_REFERER} !^http://domain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://domain.com$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://www.domain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://www.domain.com$ [NC]
                      RewriteRule .*\.(jpg|jpeg|gif|png|bmp|mpg|mpeg|wmv|asf)$ - [F,NC]
                      .

                      Comment

                      • X37375787

                        #12
                        Use a frame buster to break out of the Google image view frame.


                        <script>
                        <!--
                        if( window != window.top ) {
                        top.location.href = location.href;
                        }
                        //-->
                        </script>

                        Comment

                        • adultchica
                          Confirmed User
                          • Sep 2005
                          • 5141

                          #13
                          I've done that before does google penalize sites for doing that just curious?

                          I use a frame breaker on a couple of my sites

                          Comment

                          Working...