创建 .htaccess 来缓存图像
我想使用 .htaccess 文件返回图像(如果存在)或调用生成器(如果不存在)。
示例:
img src="images/myimage1.jpg"
如果 myimage1.jpg
不存在,则会调用 createThumb.php?image=myimage1.jpg
生成它,然后返回。
请帮助创建此 .htaccess
文件
I want to use .htaccess
file to return image if exists or call generators if not exists.
example :
img src="images/myimage1.jpg"
If myimage1.jpg
not exists, it generates it calling createThumb.php?image=myimage1.jpg
after that it returnS.
please help creating this .htaccess
file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
您可以执行以下操作:
然后在 createThumb.php 中,您可以创建图像并将其存储在 %{DOCUMENT_ROOT}/images 文件夹中,并在图像创建后向浏览器返回正确的 MIME 类型响应以获取该图像。
You can do something like this:
And then inside your createThumb.php you can create the image and store in %{DOCUMENT_ROOT}/images folder and return proper MIME type response to browser for this image after image creation.