我在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扩展吗?
您始终可以使用IIS重写规则。
<rule name="Remove ASHX Extension" stopProcessing="true">
<match url="^handler(.*)$" />
<action type="Rewrite" url="handler.ashx{R:1}" />
</rule>