404 图像占位符

发布于 2024-12-09 06:20:52 字数 190 浏览 0 评论 0原文

我正在开发一个产品库,刚刚进行了导入。这添加了一堆对服务器上不存在的图像的引用。

现在,当图像尝试加载时,它会出现损坏的图像图标,这很丑陋,而且应该更好地处理。

理想情况下,每当显示损坏的图像时(也就是说,当图像的路径不存在时),我希望 Apache 显示占位符图像。

有没有办法通过 .htaccess 做到这一点?

I've got a product gallery I'm working on and just did an import. This added a bunch of references to images that don't exist on the server.

Right now when the image tries to load, it's got that broken image icon, which is ugly, and well, should be handled better.

Ideally, whenever a broken image would be displayed -- that is to say when an image's path just doesn't exist -- I would like Apache to show a placeholder image instead.

Is there any way to do this via .htaccess?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那些过往 2024-12-16 06:20:52

使用 RewriteCond-f 来检查文件是否存在,例如:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*(\.gif|\.jpe?g|\.png)$ placeholder.jpg [L]

Use RewriteCond with -f to check if the file exists, e.g.:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.*(\.gif|\.jpe?g|\.png)$ placeholder.jpg [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文