URI segment is not working while "query strings" is working |
[eluser]tonanbarbarian[/eluser]
ok i am confused are you trying to get the url to be http://localhost/index.php/welcome/test or http://localhost/index.php?c=welocme&m=test I do not think it can allow both If you want http://localhost/index.php/welcome/test Code: $config[’enable_query_strings’] = FALSE; if you want http://localhost/index.php?c=welocme&m=test Code: $config[’enable_query_strings’] = TRUE; |
Messages In This Thread |
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 04:40 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 04:55 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 05:21 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 05:30 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 05:44 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 05:48 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 06:13 AM
URI segment is not working while "query strings" is working - by El Forum - 12-18-2007, 07:48 PM
URI segment is not working while "query strings" is working - by El Forum - 12-22-2007, 11:27 AM
|