Codeigniter 自定义路由显示根站点背景图像?

发布于 2024-10-20 07:08:43 字数 843 浏览 1 评论 0 原文

好的,我正在做一个项目: http://www.d2burke.com/exp /intern/

BaseURL 设置为: '/exp/intern/'

.htaccess 重新路由到 /exp/intern/index.php

设置了自定义路由

  1. 我为

    http://www.d2burke.com/exp/intern/questions -- $route['apply'] = "internship/apply";

  2. http://www.d2burke.com/exp/intern/apply -- $route['questions'] = "internship/questions";

等,

当你访问http://www.d2burke.com/exp/intern/internship/questions,一切都很好,正常的棕褐色背景出现......

当您使用自定义之一时路线...您从我的主站点获取背景图片...?世界正在发生什么?

Ok, so I have a project I'm working on: http://www.d2burke.com/exp/intern/

BaseURL is set to: '/exp/intern/'

.htaccess reroutes to /exp/intern/index.php

I have custom routes set up for

  1. http://www.d2burke.com/exp/intern/questions
    -- $route['apply'] = "internship/apply";

  2. http://www.d2burke.com/exp/intern/apply
    -- $route['questions'] = "internship/questions";

etc.

When you go to http://www.d2burke.com/exp/intern/internship/questions, all is well and the normal tan background shows up...

When you use one of the custom routes...you get the background image from my main site...? what is the world is going on?

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

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

发布评论

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

评论(1

冰雪梦之恋 2024-10-27 07:08:43

您似乎通过在正文内容中加载额外的样式表来覆盖背景,如下所示

<link rel="stylesheet" href="../../css/style.css" />

浏览器将其解释为页面路径的相对路径。

在实习/问题页面中,此相对页面转换为http://www.d2burke.com/exp/css/style.css ,它不存在。

修复方法是使用像 /css/style.css 这样的绝对路径

注意:如果您使用 Firebug 并检查“网络”选项卡编辑:,这非常明显。

或者,打开 Firebug,单击控制台中的箭头选项卡并启用“显示网络错误”。这样任何 404 错误都会出现在您的控制台中并作为错误出现(很棒的调试功能)

You seem to overwrite the background by loading an extra style sheet in the body content like so

<link rel="stylesheet" href="../../css/style.css" />

The browser interprets this as a relative path to your page path.

In the internship/questions page, this relative page translate to http://www.d2burke.com/exp/css/style.css, which doesn't exists.

The fix would be to use an absolute path like /css/style.css

Note: It's pretty obvious if you use Firebug and check the Net tab

EDIT: Alternatively, open Firebug, click the arrow in the Console tab and enable "Show Network Error". That way any 404 error will appear in your console and come up as an error (great debug feature)

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