|
发表于 2009-11-23 16:05:32
|
显示全部楼层
本帖最后由 clhqk 于 2009-11-23 16:06 编辑
回复 5# xman81
设置base_url(),必须要加载helper('url');
方法1:
在你使用base_url()的控制器里面加载.
$this->load->helper('url');
方法2:
如果使用比较频繁,可以直接在system/application/config/autoload.php里设置.
$autoload['helper'] = array('url');
同时我再声明一下,如果你使用URL重写的话,尤其是重写到index.php的时候,注意书写内容,我一般有这个习惯,希望大家注意!
.htaccess的内容如下:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|style|fckeditor|uploads|robots\.txt) //这里一定要把能访问的文件夹写进去!
RewriteRule ^(.*)$ index.php/$1 [L]
大家一起学习CI,共同进步吧! |
|