我已经在配置文件中找到了基本网址:
$ config ['base_url'] ='http://websitename.com/';
和index_page是:
$ config ['index_page'] ='';
以uri为:
$ config ['uri_protocol'] ='自动';
菜单中的链接未正确重定向。他们只是重新加载索引页面。在Firebug中,这是我看到的页面链接之一:
https://websitename.com/index.php?module/rekap_tl
也许这足以理解这里的麻烦。我在实时服务器上使用它。
非常感谢任何和所有帮助。
答案 0 :(得分:0)
你可以像配置codeigniter一样配置
$config['base_url'] = '';
//将其保留为空,以便codeigniter可以自行猜测,在打开$config['index_page'] = 'index.php';
之后设置$config['uri_protocol'] = 'AUTO';
和application/config/autoload.php
,然后将url helper类添加到autoload helper {{ 1}}之后你可以使用菜单$autoload['helper'] = array('url');
希望这可能会有所帮助