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

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

PHPz
Release: 2020-09-05 14:22:05
Original
3430 people have browsed it

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

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

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

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

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

在html的head标签中加上:

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

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

Related labels:
img
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template