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

[HELP] 关于windows下伪静态的问题

[复制链接]
发表于 2010-1-17 17:43:00 | 显示全部楼层 |阅读模式
本帖最后由 jimboy 于 2010-1-17 18:13 编辑

我的服务器是Windows Server2003,结果想伪静态化,原先在Apache写的都不好使了,不知道IIS下怎么写?

之前Apache下是这么写的(.htaccess):
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
#RewriteBase /
RewriteCond $1 !^(index\.php|img|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ index.php?/$1 [L,QSA]


现在IIS下我是这么写(httpd.ini),但是不好使
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteEngine On
RewriteRule ^(.*)(\.html)$ index\.php?/$1
发表于 2010-1-17 22:22:45 | 显示全部楼层
IIS 安装请参考 http://codeigniter.org.cn/forums/thread-415-1-1.html
其中的方式是目前确实可行的。
发表于 2010-1-19 16:22:25 | 显示全部楼层
实在不行的话还是用Apache吧。IIS跑PHP并没有什么优势。

本版积分规则