vote up 1 vote down star

This is a simple htaccess question for experts but I have been trying to get this sorted for a while. This was something a developer did before my time with this code. He truncated the image file extension from the requests. As an example,

/images/btn/Find a bear should get the URL changed internally to /images/btn/Find a bear.gif

All the images in the folder are .gif extensions.

I tried this URL rewrite at the root folder but it did not help.

Options +FollowSymlinks
RewriteEngine On
RewriteRule ^images/(.*)$ images/$1.gif

I know that RewriteRule is enabled on the server, etc. Please help.

flag

40% accept rate

1 Answer

vote up 3 vote down check

You’re probably having an infinite loop. Try this:

RewriteCond $1 !.*\.gif$
RewriteRule ^images/(.*)$ images/$1.gif
link|flag
worked perfectly! – Pasta Sep 9 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.