CodeIgniter base_url() 失败
我的基本 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为 guide
库是否加载?
as guide
is the library loaded?