Helicon Ape with IIS Express

谁说我不能喝 提交于 2019-12-13 06:52:32

问题


Is it possible to use Helicon Ape with IIS Express for URL rewriting via .htaccess? When I install it, it only configures websites in the full-featured IIS, not IIS Express.


回答1:


Ape comes with a program called Helicon Ape Manager for IIS Express which will configure IIS Express sites.

Alternatively you can modify Web.config to add these elements to <system.webServer>:

    <handlers>
        <add name="Helicon.Ape Handler" path="*.apehandler" verb="*" type="Helicon.Ape.Handler, Helicon.Ape, Version=3.1.0.148, Culture=neutral, PublicKeyToken=95bfbfd1a38437eb" resourceType="Unspecified" preCondition="integratedMode" />
    </handlers>
    <modules>
        <add name="Helicon.Ape" type="Helicon.Ape.ApeModule, Helicon.Ape, Version=3.1.0.148, Culture=neutral, PublicKeyToken=95bfbfd1a38437eb" />
    </modules>


来源:https://stackoverflow.com/questions/29562724/helicon-ape-with-iis-express

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!