为什么我在使用Codeigniter的URL中使用[:: 1]

时间:2016-04-11 17:30:36

标签: php codeigniter

在这里需要你的专家先生/妈妈

我只是想知道为什么我每次点击我的按钮时都会在我的网址[:: 1]中显示这个内容。请在这里帮忙..

  

// [:: 1] /myfirstwebsite/index.php/auth/login

enter image description here

即使我使用inspect elemet

enter image description here

2 个答案:

答案 0 :(得分:2)

当您的表单操作中的网址显示

  • http://::1/project_name/

您可能已将基本网址留空

$ config [' base_url'] ='';

在最新版本的codeIgniter中,建议您不要将base_url留空。

  • $config['base_url'] = 'http://localhost/project_name/';

答案 1 :(得分:1)

您正在使用IPv6,并且很可能没有在config.php文件中设置$config['base_url']

Refer to this documentation for more information.