Hi hoping somebody can help with this rewrite, I'd like to rewrite a image SRC- img src='/forums/public/style_images/master/profile/SEOFRIENDLYNAME_img.png' redirects to - /forums/public/style_images/master/profile/default_large.png So no matter what text replaces SEOFRIENDLYNAME as long as it detects the _img.png afterwards it shows the image /forums/public/style_images/master/profile/default_large.png Thanks Chris.
place this code in your .htaccess file: RewriteEngine On RewriteBase / RewriteRule ^forums/public/style_images/master/profile/([^/]+)_img.png$ /forums/public/style_images/master/profile/default_large.png [L] Code (markup): Cheers.