What is wrong with my mod_rewrite Default Image
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
RewriteBa开发者_C百科se /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>
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]
精彩评论