用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1683|回复: 0
收起左侧

[HELP] 很奇怪的Rewrite问题

[复制链接]
发表于 2012-9-19 14:30:08 | 显示全部楼层 |阅读模式

  1. [ISAPI_Rewrite]
  2. # 3600 = 1 hour
  3. CacheClockRate 3600
  4. RepeatLimit 32

  5. # 排除
  6. #RewriteCond Host: www\.abc\.com\kjmnks\
  7. RewriteCond Host: (?:web|www)\.def\.com

  8. # [url]www.kjmnks.com[/url] Rewrite规则
  9. RewriteBase /kjmnks/
  10. RewriteCond $1 !^(index\\.php|images|system|robots\\.txt)
  11. RewriteRule (.*) /kjmnks/index.php/$1 [L]

  12. <Directory "d:/wwwroot/richardw/wwwroot/">
  13.     AllowOverride all
  14. </Directory>
复制代码

上面是ISAPI_Rewrite的配置,我如果把#排除下面的那行注释行:#RewriteCond Host: www\.abc\.com\kjmnks\删除,整个Rewrite就不起作用...

能给分析下为什么不?

这个配置就是/kjmnks/下面放了CI,我想去掉index.php,主机是IIS的,就用了 ISAPI_Rewrite

本版积分规则