CodeIgniter base_url() 失败

发布于 2024-12-12 02:15:21 字数 506 浏览 0 评论 0原文

我的基本 url 函数在最新版本的代码点火器中不起作用。尝试在样式表路径中使用它,然后在视图上回显它以查看它是否在那里工作,但无济于事。

这样调用它:

<?php echo base_url(); ?>

然后使用这样的样式表:

<link rel="stylesheet" href="<?php echo base_url(); ?>css/style.css" type="text/css" media="screen" charset="utf-8"/>

在这里它被分配在我的 config.php 文件中:

$config['base_url'] = 'http://www.codeigniter.dev/';
$config['server_root'] = $_SERVER['DOCUMENT_ROOT'];

有什么想法吗?

My base url function is not working in the latest version of code igniter. Trying to use it in a style sheet path, and then just echoed it on a view to see if it worked there, to no avail.

calling it this way:

<?php echo base_url(); ?>

and then with the style sheet like so:

<link rel="stylesheet" href="<?php echo base_url(); ?>css/style.css" type="text/css" media="screen" charset="utf-8"/>

And here it is assigned in my config.php file:

$config['base_url'] = 'http://www.codeigniter.dev/';
$config['server_root'] = $_SERVER['DOCUMENT_ROOT'];

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟到的我 2024-12-19 02:15:21

作为 guide

$this->load->helper('url');

库是否加载?

as guide

$this->load->helper('url');

is the library loaded?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文