2010-10-13 59 views

回答

5

请参阅CodeIgniter Manual

在你的文档根目录,一个.htaccess文件,其中包含以下内容:

RewriteEngine on 
RewriteCond $1 !^(index\.php|images|robots\.txt) # these are examples, 
               # add everything here that 
               # you **don't** want to be 
               # routed to CI 
RewriteRule ^(.*)$ /index.php/$1 [L] 

然后在application/config/config.php变化:

$config['index_page'] = '';