|
发表于 2011-10-14 12:41:19
|
显示全部楼层
你这路由违背了CI的路由 ,你只能自己来写。而且你的控制器是category
你只能把他改成 http://www.ddd.com/category /1
.htaccess里面的规则
RewriteEngine on
RewriteCond $1 !^(index\.php|system\.php|images|skin|js|ls|swfupload|attachment|application|robots\.txt)
RewriteRule ^(.*)$ /fx/index.php/$1 [L]
注: RewriteRule ^(.*)$ /web1/index.php/$1 [L]里的web1是你的CI程序目录 |
|