从URL访问ASHX而不使用.ashx扩展名

问题描述 投票:1回答:1

我在ASP.Net项目中有一个Web处理程序。我想从URL访问它。

是的,我可以像http://mywebsite.com/handler.ashx?id=35157那样做它工作正常。

但问题是,我正在从一些Arduino设备访问它。他们的库不支持这种URL。

他们像URL一样支持http://mywebsite.com/handler?id=35157

如何从http://mywebsite.com/handler?id=35157,device=DF,Msg=OK等URL访问Web处理程序

没有ASHX扩展吗?

c# asp.net url url-routing ashx
1个回答
0
投票

您始终可以使用IIS重写规则。

<rule name="Remove ASHX Extension" stopProcessing="true">
  <match url="^handler(.*)$" />
  <action type="Rewrite" url="handler.ashx{R:1}" />
</rule>
© www.soinside.com 2019 - 2024. All rights reserved.