Codeigniter在点击href时在地址栏发布了双链接


Codeigniter posted double link in address bar when clicking href

帮我弄一下这段代码。

 <a href="<?php echo site_url('calculator/');?>"><< Kembali menghitung</a>

当我点击链接时,它发布了双重喜欢:http://localhost/belajarci/index.php/calculator/localhost/belajarci/index.php/calculator

我试图删除的href值,但页面不引用的家,它只改变另一个值在我的代码。

这是正确的,它是重定向双url,因为你需要在你的文件/控制器构造函数中包含$this->load->helper('url')或使用url helperautoload.php

在配置中做两件事:

  1. 检查项目中的。htaccess文件,因为你可能已经设置了url重定向。
  2. 检查配置文件中设置的基本url。

您将获得这个URL:

http://localhost/belajarci/index.php/calculator/localhost/belajarci/index.php/calculator

因为你需要在文件/控制器构造器中包含$this->load->helper('url'),或者在autoload.php

中使用url helper

加载url helper后,您的url将按照您的需要工作。

您也可以遵循CI用户手册:https://codeigniter.com/userguide3/helpers/url_helper.html