我正在尝试将域重定向到其他网站,而不更改第一个网址(用户应继续查看 http://www.myurl.org,因为新网址为https://wwws.enterprisedomain.com)。
我可以这样做,在第一个域的index.htm中插入一个框架(我知道这不是最好的做法,但它现在运行良好):
<frame name="main" src="https://wwws.enterprisedomain.com">
事实是https://wwws.enterprisedomain.com在ASP.NET中具有登录机制。在Firefox和Chrome上没问题,但是当我们使用Internet Explorer 8时,似乎 POST不工作!
答案 0 :(得分:0)
为什么要隐藏用户安全工作?
我认为你正在尝试解决一个不存在的问题,take a look at this excellent library会将用户引导到正确的协议(HTTP或HTTPS),无论他们输入什么内容。所以使用的用户转到http://myurl.org将自动转到https://myurl.org,而不会让他们做任何事情。
忘记框架的想法。