我在 Centos 5 上运行 Apache,我想实现重写规则。当用户尝试访问文件夹/var/site.com/html/image/products/
中的图像时,规则应检查图像是否存在,如果不存在,我想/var/site.com/html/image/defaultimage.jpg
显示
我试图把它放在 .htaccess 中, /var/site.com/html/image/products/
但它没有用
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} \.(gif|jpg|jpeg|png)$
RewriteRule .* /var/site.com/html/image/defaultimage.jpg [L]