I have 404 errors in my log from googlebot that are caused by image URL's that have amp appended to the URL for example:
http://example.com/2008/12/picture.jpgamp
I tried to figure out where google is getting these from, but cannot, maybe some badly programmed scarfing site trying to show the photos.
Anyway, this is my best htaccess shot at a redirect, but being an amateur and not wanting to wreck my entire site and not having any handle on possible unintended consequences, I figured to ask here if it's workable and a clean solution. Any help would be greatly appreciated.
RedirectMatch (.*)\.jpgamp$ http://example.com$1.jpg
Greg