I'm using redirectMatch to get rid of TimThumb query string in thumb's link - Facebook API doesn't allow query string.
I'm using:
redirectMatch 301 ^/thumb/(.*)$ http://mydomain.com/thumbs/timthumb.php?$1
Apache is redirecting me from:
http://fotofly.lv/thumb/src=http://farm9.staticflickr.com/8250/8591752640_54300394_n.jpg&h=160&q=60&f=.jpg
to
http://fotofly.lv/thumbs/timthumb.php?src=http:/farm9.staticflickr.com/8250/8591752640_54300394ae_n.jpg&h=160&q=60&f=.jpg
There's missing / in http://
Tried rewriting links, had no success. How can I get that slash back in its place?