本文介绍了赫利猿与IIS防爆preSS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有可能使用赫利猿与IIS防爆preSS的URL通过的.htaccess重写?当我安装它,它仅配置网站的功能齐全的IIS,IIS不防爆preSS。
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.
推荐答案
猿有一个叫赫利猿管理器程序为IIS防爆preSS 将配置IIS防爆preSS网站
Ape comes with a program called Helicon Ape Manager for IIS Express which will configure IIS Express sites.
另外,您可以修改Web.config中添加这些元素< system.webServer>
:
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>
这篇关于赫利猿与IIS防爆preSS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!