我有页面相对链接的基本URL <base href="https://www.example.com/" target="_self">
。
问题是,它正在影响要嵌入的外部iframe的 src =“” 。
<iframe width="600" height="300" frameborder="0" src="https://external-example.to/something/widget?width=600&height=300¬e="></iframe>
其他从我的域https://www.example.com/
加载内容的iframe正常运行。
例如<iframe width="600" height="300" frameborder="0" src="https://www.example.com/something/some-thing"></iframe>
不受影响。
基本网址,如果将其值强制为外部iframe的 src 值
<iframe width="600" height="300" frameborder="0" src="https://www.example.com/https://external-example.to/something/widget?width=600&height=300¬e="></iframe>
如何避免这种 https://www.example.com/https://external-example.to/something/widget?width=600&height=300¬e=
发生?
谢谢。