我创建了一个网站并将其部署到 Windows Azure。在开发过程中的某个地方,我从项目属性中启用了 SSL,并且所有内容(https 地址)在 localhost 和我部署站点的 Azure 网站上都运行良好。
现在我的 Azure 试用版即将到期,我正在将我的网站转移到另一个不支持 SSL 的免费 asp.net 托管,无需付费。
所以我认为这很容易,只需将 SSL Enabled 设置回 False 就像我刚开始开发时一样,一切都很好,但事实并非如此。
禁用 SSL 后,我的网站无法运行。我的 IIS Express 的 Visual Studio 设置图片打开并显示正确地址上有一个服务器:http: //db.tt/EKTcxPsd
当我从 Visual Studio 启动站点时,它开始加载页面localhost:44300
。几秒钟后,我被重定向到https://localhost
显示“网页不可用”错误。图片:http ://db.tt/VntZTpKD
我尝试删除 IISExpress 文件夹并重新启动 Visual Studio。重新创建的 applicationhost.config 文件具有正确的信息(据我所知)
<site name="PrototypeNew-bootstrap3" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="E:\path-shortened\Visual Studio 2013\Projects\PrototypeNew\PrototypeNew-branch" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:44300:localhost" />
</bindings>
</site>
将网站发布到托管环境后,我遇到了同样的问题。Going tohttp://mywebsite.com
将我重定向到https://mywebsite.com
并显示与 localhost 页面相同的错误。
如果我重新启用 SSL,则本地主机上的 https 地址开始正常工作。
有谁知道这里发生了什么?是否有另一个我忘记关闭的 SSL 开关?为什么它总是将我重定向到 https
编辑。尝试创建一个新的 asp.net mvc 4 项目。启动它,它工作正常。将 web.config 复制到我的项目中,它仍然重定向到https:localhost