TimThumb & htaccess : clean url

Do you know if there’s a way to alter via htaccess the timthumb urls ?
My question is if i can change for example urls like this

thumb.php?src=http://mysite.com/images/image.jpg&h=200&w=350&zc=1&q=80

Read More

to

http://mysite.com/images/image.jpg

Related posts

Leave a Reply

3 comments

  1. Cadeyrn’s code work probably for 1 specific size ( 200&w=350& etc) , the major problem with timthumb and the reason people use it, is that it allows for many dynamic sizes thus making .htaccess rewrite rules much more difficult, especially if you using friendly WordPress permalink structure.

    There is a guide here on how to do it, it might need tweaking and honestly timthumb should be avoided. http://revisedagain.com/?p=18

  2. You need to edit the .htaccess file, and add some rewrite rules. This only works with apache2, for other web servers, you need other solution.

    Before the main part of the wordpress rewrite rules, but after RewriteEngine On:

    # check if the file exist
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} ^/images/
    RewriteRule ^(.*)$ thumb.php?src=http://%{HTTP_HOST}/$1&h=200&w=350&zc=1&q=80 [L]
    

    Please note, I cannot test this right now, and I’m really not sure, it’ll work, but you need something like this.