简单的 codeigniter 类似基目录的函数/相对目录结构的定义

发布于 2024-12-06 01:27:37 字数 737 浏览 1 评论 0原文

我正在使用 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和

谢谢,

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 技术交流群。

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

发布评论

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

评论(1

阳光下的泡沫是彩色的 2024-12-13 01:27:37

您可以使用 / 引用相对于网站根目录的文件。

假设您位于 http://www.site.com/,两个路径都将引用同一文件。

<link href="/my_template/styles.css" ... />

<link href="http://www.site.com/my_template/styles.css" ... />

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/.

<link href="/my_template/styles.css" ... />

<link href="http://www.site.com/my_template/styles.css" ... />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文