我正在使用 Apache,并且在我的Local Host上有一个示例 web 文件夹,例如:
http://localhost/test/
文件test
夹中的文件:
index.html
sample.jpg
.htaccess
样本来源index.html
:
<html>
<body>
<img src="sample.jpg" />
</body>
</html>
当我在 运行网站时http://localhost/test/
,它只会在页面上显示图像“sample.jpg”。
问题:
- 我想防止图像
http://localhost/test/sample.jpg
直接显示在 url 栏中。
注意: 我发现以下解决方案在除 Firefox 之外的所有浏览器上测试时都有效。