|
htaccess help
I'm trying to put a list of images in my htaccess that get replaced with a different image. Is this possible?
RewriteEngine On
RewriteCond %^1.jpg [OR]
RewriteCond %^2.jpg [OR]
RewriteCond %^3.jpg
RewriteRule ^(.+) test.jpg [F,L]
This particular setup doesn't work. Does anyone know how to do this?
Thanks in advance.
|