I just set up a development environment using CodeIgniter 2.0 and in config I leave the uri_protocol
as
$config[ uri_protocol ] = AUTO ;
But my problem is all Controller/Action request send to the welcome controller. I checked this again by changing the uri_protocol
to QUERY_STRING
and it works fine for me. Why is this always redirected to welcome controller when using uri_protocol
as AUTO
?