Reputation: 68
I hope you can help. I'm trying to do a htaccess rewrite changing
file.gif to images/file.gif
I'm waded through this site, but can't find it. Any help would be much appreciated.
Thanks Mark
Upvotes: 0
Views: 55
Reputation: 785196
Enable mod_rewrite and .htaccess through httpd.conf
and then put this code in your .htaccess
under DOCUMENT_ROOT
directory:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule (?!^images/)^([^.]+\.gif)$ /images/$1 [L,NC]
Upvotes: 1