[eluser]Unknown[/eluser]
I have upload my website to linux server, it is use cpanel
i have use follow:
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|images/|css/|robots\.txt|js/)
RewriteRule ^(.*)$ index.php?$1 [L]
and
$config['index_page'] = "";
but when i request a url such as : /aaa/bbb
it also use welcome Controller, no use Controller aaa
but if I request /index.php/aaa/bbb
it is right
and it is right at my computer(windows with apache)
why?