解决方法
是的,你可以使用URL Rewrite模块(我正在使用v2 ..但它也应该与v1.x一起使用,尽管我没有v1.x可以测试):
<system.webServer> <rewrite> <rules> <rule name="UserAgentRedirect" stopProcessing="true"> <match url="^(.*)$" /> <conditions> <add input="{HTTP_USER_AGENT}" pattern="(iphone|ipod)" /> </conditions> <action type="Rewrite" url="/special-page.aspx" /> </rule> </rules> </rewrite> </system.webServer>
根据上述规则,来自iPhone或iPad(或用户代理字符串中具有iphone或ipod的任何其他浏览器/应用程序)的所有请求都将被重写(内部重定向)到/special-page.aspx.