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

[初级] CI IIS 中URL重写的规则绝对好用

[复制链接]
发表于 2011-5-31 14:53:19 | 显示全部楼层 |阅读模式
[ISAPI_Rewrite]

# 3600 = 1 hour
CacheClockRate 3600

RepeatLimit 32
RewriteRule .*\.(?:gif|jpg|png|css|js|txt|jpeg|swf) $0 [I,L]  
#针对后缀的不重写 不重写什么自己加

RewriteRule /httpd(?:\.ini|\.parse\.errors) / [F,I,O]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ /index.php/$1 [L]
# 其他的重写

本版积分规则