3

Need to redirect all non-existing images to the default.gif For some reason the next code does not work

Please help.

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /jasper/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .*\.(jpg¦gif¦png¦bmp)$ /jasper/default.gif [L]    


RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /jasper/index.php [L]
</IfModule>
Book Of Zeus
  • 49,509
  • 18
  • 174
  • 171

1 Answers1

1

Try This:

RewriteEngine On
RewriteBase /jasper/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule \.(jpeg|jpg|gif|bmp|png)$ /jasper/default.gif [L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /jasper/index.php [L]
Book Of Zeus
  • 49,509
  • 18
  • 174
  • 171