2010-10-13 29 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'] = '';