|
发表于 2008-10-17 08:50:30
|
显示全部楼层
参考这个帖子: http://codeigniter.org.cn/forums/thread-1157-1-1.html
修改 system/application/config/config.php
$config['index_page'] = "index.php?"; //在后面加了一个问号,这样做是为了服务器运行时兼容性更好
//如果你的服务器支持 PATH_INFO 变量就不用加问号了
//如果你用了url_rewrite规则,那么这里设为空字符串就行了。例如: $config['index_page'] = "" ;
nginx 的url_rewrite设置,还没在实际的环境中测试,参考如下:
location /
{
index index.php;
root /www/inktype;
if ($request_filename !~ (captcha|css|jscripts|uploads|images|robots\.txt|index\.php.*) ) {
rewrite ^/(.*)$ /index.php?/$1 last;
}
}
注意上面是在nginx中为inktype专门设置了一个虚拟主机
[ 本帖最后由 protang 于 2008-10-17 08:51 编辑 ] |
|