asp IIS伪静态 无法找到该页
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Block external access to the httpd.ini and httpd.parse.errors files
RewriteRule /httpd(?:\.ini|\.parse\.errors).* / [F,I,O]
# Block external access to the Helper ISAPI Extension
RewriteRule .*\.isrwhlp / [F,I,O]
RewriteRule ^(.*)/index\.asp $1/index.html
------解决方案--------------------RewriteRule $1/index.html ^(.*)/index\.asp
应该前后颠倒才对吧?