Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一系列图像,我希望使用 HTML img 标签在网站上显示。
e.g. <img src='some/location' />
但是,该图像位于 Web 根目录之外的不同目录中。(但仍在同一台服务器上)。
此外,它已使用 php 的 md5_file() 保存为哈希值
我该如何在网站上显示图像,即使我可以以某种方式访问文件,但它的保存方式不同?
你必须做类似的事情<img src="image.php?img=whatever">。您的 image.php 文件需要在 Web 根目录之外获取图像,并对其进行解码以供查看。
<img src="image.php?img=whatever">
您可以使用 URL 重写来强制使用 .jpg(或其他)扩展名。