IIS 7.0 - 每个站点突然将根请求重定向到表单身份验证

发布于 2024-08-31 02:04:01 字数 249 浏览 6 评论 0原文

突然间,IIS 7.0 将对主机上托管的任何域的根的每个请求重定向到 ~/Account/Logon,这是我们的表单身份验证重定向。此外,一些 JavaScript 和图像请求也被类似地重定向,但其他 aspx 页面则不然。

这是不可取的。没有人会承认改变了任何事情。

有什么想法吗?

编辑:事实证明磁盘权限出了问题。谁能告诉我 Windows Server 2008 中标准 ASP.Net 安装的情况应该如何?磁盘权限现在不正常了。

Suddenly, IIS 7.0 is redirecting every request for the root of any domain hosted on the box to ~/Account/Logon, which is our Forms Authentication redirect. Additionally, some JavaScript and image requests are being similarly redirected, but not other aspx pages.

This is not desirable. Nobody will admit to changing anything.

Any ideas?

EDIT: It turns out that something has gone wrong with the disk permissions. Can anyone point me to the way things are supposed to be in Windows Server 2008 for a standard ASP.Net installation? The disk permissions are out of whack now.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亢潮 2024-09-07 02:04:02

有人在你的 web.config 中拒绝了 Anonymous 吗?

<system.web>
  <authentication mode="Forms"></authentication>

  <authorization>
    <deny users="?"/>
  </authorization>
</system.web>

Did somebody deny Anonymous in your web.config?

<system.web>
  <authentication mode="Forms"></authentication>

  <authorization>
    <deny users="?"/>
  </authorization>
</system.web>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文