url第二个参数默认是index.php,在哪改这个默认参数?我们公司的网站用的ci框架,主页是indexkk.php.
在我本地电脑上的网站能访问主页但不能访问其它子页,比如访问http://localhost/blog网页不存在,但访问
http://localhost/indexkk.php/blog就成功了,其中indexkk.php是我自己添加的。第二个默认参数在哪改啊,郁闷啊,我改了好多东西都不行。
.htaccess文件内容是:
RewriteEngine on
RewriteCond $1 !^(indexkk\.php|lyb|js|imgs|images|inc|html|upload|topic|pixflash|tiny_mce|css|xieyi\.htm|authcode\.php|rss\.php|index\.php|info\.txt|robots\.txt)
RewriteRule ^(.*)$ indexkk.php/$1 [L]
-----------------------------------------------------------
config.php文件中有个$config['index_page'] = "indexkk.php";改成index.php也不行。 |