为啥我使用 Codeigniter 在我的 URL 中有这个 [::1] [关闭]

Posted

技术标签:

【中文标题】为啥我使用 Codeigniter 在我的 URL 中有这个 [::1] [关闭]【英文标题】:why i'm having this [::1] in my URL using Codeigniter [closed]为什么我使用 Codeigniter 在我的 URL 中有这个 [::1] [关闭] 【发布时间】:2016-08-02 00:12:49 【问题描述】:

需要您的专业知识,先生/女士

我只是想知道为什么每次我点击我的按钮时我的 url [::1] 中都有这个。请在这里帮忙..

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

即使我使用检查元素

【问题讨论】:

因为你使用的是ipv6 [::1] 指的是 IPv6 格式的 localhost。 那我该怎么办.. 新手先生。对不起 这将解释为什么***.com/questions/34025305/… 【参考方案1】:

当您的 url 在表单操作中显示时

http://::1/project_name/

您可能将基本网址留空

$config['base_url'] = '';

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

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

【讨论】:

【参考方案2】:

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

Refer to this documentation for more information.

【讨论】:

我的评论中有相同的链接。

以上是关于为啥我使用 Codeigniter 在我的 URL 中有这个 [::1] [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

为啥 isset($this->var) 在我的 Codeigniter 模型中总是返​​回 false?

为啥codeigniter会变慢?

为啥 CodeIgniter 将 /index.php/ 添加到所有 URL?

为啥/在找到页面时 CodeIgniter 在哪里设置 404 http 状态?

codeigniter 分页首页 URL

简单的 URL 路由不适用于 CodeIgniter