我有一个名为private/prompt.html
的页面,该页面具有.htaccess
身份验证。
出于某些原因,我也在使用iframe,在iframe中,我正在调用private/prompt.html
index.html
<body>
Hello World
<iframe src = "private/prompt.html"
sandbox="allow-same-origin allow-scripts allow-popups"
width = "0" width="0">
</iframe>
</body>
private/prompt.html
<body>
Hello Prompt..!
</body>
当我通过iframe将private/prompt.html
加载到index.html
中时,它显示了.htaccess
身份验证弹出窗口。
使用iframe加载页面时,我想摆脱.htacces
弹出窗口。
我使用了沙箱,但不确定哪个属性会阻止弹出窗口。
请查看所附图片。