Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking to use Apache mod_rewrite to serve a file as .jpg instead of .jpeg. Is this possible?

share|improve this question
Why not just rename the file? It's generally bad practice to serve the same content on different URLs like this. – Benoit Sep 25 '09 at 19:38
Ben S, isn't the entire point of mod_rewrite to serve the same content on different URLs? What makes this generally bad practice? – bmb Sep 25 '09 at 23:20
Find an answer? – atwellpub Jan 28 '11 at 16:00

1 Answer

Try this:

RewriteEngine on
RewriteRule ^(.+)\.jpeg$ $1.jpg
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.