gpt4 book ai didi

regex - 将转发的博主 url 屏蔽为自己的域 url

转载 作者:行者123 更新时间:2023-12-04 15:32:32 25 4
gpt4 key购买 nike

关注 Rounin's answerhow to redirect any blogspot urls with any extension to the mydomain.com corresponding URL 上仔细写下(非常感谢) ,现在的问题是如何屏蔽 URL?
我的意思是,一旦 blogspot URL 重定向到 mydomain.com,我想继续显示原始 blogspot URL 而不是 mydomain.com。

最佳答案

您可以为此使用以下 JavaScript 代码段 -

<script>
site = "http://example.com"; // The site which you want to mask, don't add ending slash
iFrame = document.createElement("iframe"); // Creates a iframe via JavaScript
iFrame.setAttribute("src", site + location.pathname); // Set the source of iFrame
iFrame.setAttribute("class", "maskingFrame"); // Add class to iFrame
document.body.appendChild(iFrame); // Append iframe to body of page
</script>

最小的 CSS 将是 -
body {
overflow:hidden;
}
.maskingFrame, body {
width:100%;
height:100%;
border: none;
}

您可以查看演示 here (这是主页)和 here (这是来自其他站点的内部 URL,在原始 blogspot URL 中不存在)

关于regex - 将转发的博主 url 屏蔽为自己的域 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35107593/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com