.htaccess重定向到文件夹中所有图像的占位符图像

时间:2014-12-11 10:55:40

标签: apache .htaccess url-rewriting

对于我的服务器收到的特定文件夹中的图像的每个请求,我需要提供一个占位符图像。

所以 - 每次请求时都会:

www.mysite.com/siteimage/scale/480/800/****/

我希望我的服务器能够提供服务:

www.mysite.com/wp-content/themes/mytheme/img/placeholder.png

这可能吗?

由于

1 个答案:

答案 0 :(得分:0)

将此规则作为您RewriteBase行下面的第一条规则插入:

RewriteRule ^siteimage/scale/480/800/ /wp-content/themes/mytheme/img/placeholder.png [L,NC,R=302]