如何转换下面的网址
http://example.com/controller?id=value&sd=value2
喜欢以下
http://example.com/controller/value/value1
尝试在下面
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';

但没有工作
答案 0 :(得分:0)
这可以通过使用application/config.php
并禁用URL上的查询字符串来实现(这是默认选项,不是为什么你喜欢它,除非有一些.htaccess
和/或自定义代码弄乱你的网址)。只需将enable_query_strings
的值更改为FALSE
:
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
更多信息: