Refused to display 'https://xx.xx.com/xxxxx.mp3' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
複製代碼
在頁面中添加頭信息bash
<meta http-equiv="X-Frame-Options" content="deny">
複製代碼
X-Frame-Options有三種狀態網站
X-Frame-Options: DENY //把這個網頁放在iFrame內
X-Frame-Options: SAMEORIGIN //iFrame的網站與發出X-Frame-Options的網站相同
X-Frame-Options: ALLOW-FROM //
複製代碼
不指定X-Frame-Options的網頁等同表示它能夠放在任何iFrame內。ui