简体   繁体   中英

Helicon Ape with IIS Express

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.

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM