views:

16

answers:

1

How can i turn http://domain.com/foo/bar.jpg into http://domain.com/bar while keeping the rest of the website working?

A: 

You should simply be able to use...

RewriteRule ^foo/bar.jpg$ /bar
Cags
All the images are user uploads. I have got it to work as http://domain.com/bar so far, but that means when i try go to http://domain.com/ it's attempting ot load http://domain.com/foo/index.phpAny idea of a better way to solve this?
Danny