|
本帖最后由 xygs888 于 2012-1-15 11:20 编辑
已经按照大侠们之前方法改了,版本2.10
我改动的地方如下:
$config['base_url'] = 'http://localhost/ci/';
$config['index_page'] = '';
apache2.2 改了httpd.conf:
LoadModule rewrite_module modules/mod_rewrite.so
<Directory />
Options FollowSymLinks
AllowOverride all
Order deny,allow
Deny from all
</Directory>
还有 .htaccess
在根目录,也就是ci目录里,和index.php 同一目录
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
</IfModule>
做完以上几步还是不行。。跟以前的访问路径一样
http://localhost/ci/index.php/blog(可以)
http://localhost/ci/blog(不可以)
超级无解。。求大侠帮助。。感激不尽!!! |
|