Home  >  Article  >  Backend Development  >  img标签src引用网络图片响应403怎么办

img标签src引用网络图片响应403怎么办

PHPz
PHPzOriginal
2016-06-06 20:35:233382browse

img标签src引用网络图片响应403是因为网络安全问题,引用图片的页面做了安全防护;解决办法是:在html页面的head标签中加入“9e64fa57428dea9766c17ff6db63e75f”标签即可。

img标签src引用网络图片响应403怎么办

img标签src引用网络图片响应403怎么办?

在html页面加入9e64fa57428dea9766c17ff6db63e75f标签,就可以解决页面加载网络图片的问题,

原因大概是网络安全的问题,别人的页面做了安全防护的问题。

在html的head标签中加上:

<meta name="referrer" content="no-referrer" /> <!--可以让img标签预加载网络图片-->

更多相关技术知识,请访问PHP中文网

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn