默认文档和 HttpHandler 服务于特定页面

发布于 2024-10-09 02:42:58 字数 539 浏览 6 评论 0原文

我处于以下情况。

我有 IIS 7.5 和 ASP.NET 应用程序。应用程序必须以 IIS 经典模式运行。

我有一个 HttpHandler 可以满足所有请求:

  <httpHandlers>
  <add verb="*" path="*.aspx" type=".....HandlerFactory..." />
</httpHandlers>

问题是我无法为非物理文件建立默认文档。我希望默认页面是:Home.aspx(这是一个非物理文件)。

因此,当我访问 www.mysite.com 时,我收到错误:

HTTP 错误 403.14 - 禁止 Web 服务器配置为不列出 该目录的内容。

我不想进行重定向。

有什么方法可以实现此目的,而无需创建一个 index.html 来重定向到 Home.aspx?

提前致谢!

I am in the following situation.

I have IIS 7.5 with an ASP.NET application. The application must run with IIS Classic Mode.

I have one HttpHandler that serves all the Request:

  <httpHandlers>
  <add verb="*" path="*.aspx" type=".....HandlerFactory..." />
</httpHandlers>

The problem is that i can't establish a Default Document to an non phyisical file. I want that the Default Page be : Home.aspx (which is a non phyisical file).

So when I go: www.mysite.com I get an error:

HTTP Error 403.14 - Forbidden The Web server is configured to not list the
contents of this directory.

I do not want to make a REDIRECT.

Is there any way to accomplish this without having to create a index.html to redirect to Home.aspx?

Thanks in advance!

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

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

发布评论

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

评论(2

夜未央樱花落 2024-10-16 02:42:58

一种选择是将请求重写为 /home.aspx。

这里旧的 IIS5/6 技巧是在文件夹中放置一个空白的默认文档 - 这将超越“文件是否存在”,但您的 http 处理程序将启动并接管,因此不会涉及空白文档。

我会注意到,这就是 ASP.NET MVC 在根目录中附带 Default.aspx 的原因。

One option would be to rewrite requests to / to /home.aspx.

The old IIS5/6 trick here is to put a blank default document in the folder -- this will get past the "does the file exist" but your http handler will kick in and take over so said blank document won't be involved.

I'll note this is why ASP.NET MVC ships with a Default.aspx in the root.

剩一世无双 2024-10-16 02:42:58

如果您创建一个空白的 Home.aspx 文件并将其设置为默认页面,则 IIS 会将其选择为您的默认文档,但它仍将由您的处理程序进行处理。

If you create a blank Home.aspx file and set it as the default page then IIS will pick this up as your default document, but it will still be processed by your handler.

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