web.config 条目在特定站点中不起作用

发布于 2024-09-17 06:17:28 字数 206 浏览 3 评论 0原文

在我的 web.config 文件中,我添加了一个条目:


<添加类型=“HDI.HTTPFilter”名称=“HTTPFilter”/>

但我放置网站的服务器没有读取此条目
但在其他服务器上该网站运行良好。
可能是什么问题?

谢谢,
伊晒

in my web.config file i've added an entry:


<httpModules>
<add type="HDI.HTTPFilter" name="HTTPFilter"/>

but the server where i've placed the website on is not reading this entry
but in other servers the site works perfectly.
what the problem might be?

thanks,
yishai

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

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

发布评论

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

评论(1

郁金香雨 2024-09-24 06:17:28

也许您的服务器具有不同的操作系统,这就是它们给出不同结果的原因。

在 IIS6 (Windows Server 2003) 中

<system.web>
  <httpModules>
     <add type="HDI.HTTPFilter" name="HTTPFilter"/>
  </httpModules>
</system.web>

在 II7 (Windows Server 2008) 中,您需要将模块放入

<system.webServer>
    <modules>
      <add type="HDI.HTTPFilter" name="HTTPFilter"/>
    </modules>
</system.webServer>

Maybe your servers have different operating systems and that's why they are giving diferent results.

In IIS6 (Windows Server 2003)

<system.web>
  <httpModules>
     <add type="HDI.HTTPFilter" name="HTTPFilter"/>
  </httpModules>
</system.web>

In II7 (Windows Server 2008) you will need to put your module inside <system.webServer>

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