菜单重定向仅转到带有codeigniter的index.php页面

时间:2015-02-03 07:38:33

标签: php codeigniter

Codeigniter是我的第一个,所以我希望我的解释清楚。在这种情况下,我正在处理在不同服务器上设置Codeigniter网站。我认为,我正在接受禁止的访问错误,但此后已经纠正了这一点。

我已经在配置文件中找到了基本网址:

$ config ['base_url'] ='http://websitename.com/';

和index_page是:

$ config ['index_page'] ='';

以uri为:

$ config ['uri_protocol'] ='自动';

菜单中的链接未正确重定向。他们只是重新加载索引页面。在Firebug中,这是我看到的页面链接之一:

https://websitename.com/index.php?module/rekap_tl

也许这足以理解这里的麻烦。我在实时服务器上使用它。

非常感谢任何和所有帮助。

1 个答案:

答案 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');希望这可能会有所帮助