简单的 codeigniter 类似基目录的函数/相对目录结构的定义
我正在使用 codeigniter 开发一个网站,我有一个简单的问题。
对于 html 和样式,我使用 base_url()
作为工作路径,但在 html 源中,完整路径包括 http://
我的文件夹结构如下:
application/
system/
my_template/
*styles.css
*images/
*etc.etc.
index.php
当我在 index.php 上时/controller/method/param1/param2,我想像这样设置例如css路径:
<link href="../../../my_template/styles.css" rel="stylesheet" type="text/css" media="screen" />
但是使用base_url()它们会变成这样:
<link href="http://www.site.com/my_template/styles.css" rel="stylesheet" type="text/css" media="screen" />
我怎样才能为css和标签做到这一点?我确信我错过了一个简单的步骤,但找不到它。我正在使用 CI 2.03。
谢谢,
I'm developing a website with codeigniter, and I have a simple issue.
For html and styles I'm using base_url()
for paths to work, but in html source a full path including http://
My folder structure is like this:
application/
system/
my_template/
*styles.css
*images/
*etc.etc.
index.php
when I'm on index.php/controller/method/param1/param2, I want to set e.g css path like this:
<link href="../../../my_template/styles.css" rel="stylesheet" type="text/css" media="screen" />
But with using base_url() they become like this:
<link href="http://www.site.com/my_template/styles.css" rel="stylesheet" type="text/css" media="screen" />
How can I do this for css and <script>
tags ? I'm sure I'm missing a simple step, but could not find it. I'm using CI 2.03.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
/
引用相对于网站根目录的文件。假设您位于 http://www.site.com/,两个路径都将引用同一文件。
You can use
/
to reference a file relative to the root directory of your web site.Both paths will reference the same file assuming you are on http://www.site.com/.