行,所以我有這個在我的.httaccess我的Codeigniter .htaccess搞砸了嗎?
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
與這在我的配置
$config['index_page'] = "";
這似乎讓我做這件事
http://localhost/ci_example/site
,而不是這個..目前爲止還不錯
http://localhost/ci_example/index.php/site
但現在當我嘗試用
http://localhost/ci_example/welcome
它重定向我訪問我的歡迎控制器
http://localhost/
爲什麼重定向和我能做些什麼來停止....歡迎控制器具有這
function index()
{
$this->load->view('welcome_message');
}
是什麼`site`對應?一個「網站」控制器?你能告訴我們你的'$ config ['base_url']`是什麼嗎? – BoltClock 2010-12-23 05:19:20