如何只为私有 asp.net 页面设置 HTTPS?
我的 asp.net 页面上有登录页面,我需要打开此页面并显示为
旧网址 (http://www.example.com/login.aspx),
并且我希望它像
新网址 ( https://www.example.com/login.aspx)
如何仅将login.aspx页面的http更改为https
我在Visual Studio 2008下将vb.net与asp.net一起使用。
我需要任何帮助吗?
谢谢。
I Have login page on my asp.net page and I need this page to open and appear like that
old url (http://www.example.com/login.aspx)
and I want it like that
new url (https://www.example.com/login.aspx)
how to change the http to be https only for the login.aspx page
I'm using vb.net with asp.net under visual studio 2008.
I need any help please.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 URL 重写 之类的内容来确保您通过 HTTP 进入登录页面时会自动重定向到HTTPS,如果不是登录页面,则重定向到HTTP。
You could use something like URL Rewrite to make sure that if you go to the login page on HTTP it will automatically redirect to HTTPS, and if it isn't the login page, redirect them to HTTP.
重定向 Http 页面上的响应并确保所有链接都转到安全页面?
Redirect the response on the Http page and make sure all your links go to the secure page?