IIS8怎么配置伪静态

2025-04-06 08:53:01
推荐回答(1个)
回答1:

安装isapi方式的rewrite组件或urlrewrite组件(web.config放规则)
:
01
02
03
04
05
06

07
08
09
10
11
12

13
14
15
16

17
18
19
20
21

22
23
24
25

26
27
28
29

30
31

32

33

34


第一步:
点击处理程序映射
(1)添加托管处理程序:
路径:*
类型:System.Web.UI.PageHandlerFactory
名称:v2_jiuxian.com_1PageHandlerFactory-Integrated-4.0
(2)编辑脚本映射:
我环境是64位,为了以防万一,我32位和64都配置了
32位
路径:*.html
可执行文件:%windir%\http://Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll
名称:v2_jiuxian.com_2PageHandlerFactory-ISAPI-4.0_32bit
64位:
路径:*.html
可执行文件:%windir%\http://Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll
名称:v2_jiuxian.com_3PageHandlerFactory-ISAPI-4.0_64bit
(3)添加通配符脚本验证:
路径:*
可执行文件:%windir%\http://Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll
名称:v2.jiuxian.com_4PageHandlerFactory-ISAPI-4.0_64bit
以上的4个添加其实是把aspx的主件应用拷贝了一份.将其aspx改成html,
操作完以上4个项后返回,点击模块
(1)添加托管模块
名称:RewriterModule
类型:HttpHandler.URLRewriter.RewriterModule, HttpHandler
以上类型是你iis拦截器dll的路径啊,如空间名.类名