Codeigniter 自定义路由显示根站点背景图像?
好的,我正在做一个项目: http://www.d2burke.com/exp /intern/
BaseURL 设置为: '/exp/intern/'
.htaccess 重新路由到 /exp/intern/index.php
设置了自定义路由
- 我为
http://www.d2burke.com/exp/intern/questions --
$route['apply'] = "internship/apply";
-
http://www.d2burke.com/exp/intern/apply --
$route['questions'] = "internship/questions";
等,
当你访问http://www.d2burke.com/exp/intern/internship/questions,一切都很好,正常的棕褐色背景出现......
当您使用自定义之一时路线...您从我的主站点获取背景图片...?世界正在发生什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎通过在正文内容中加载额外的样式表来覆盖背景,如下所示
浏览器将其解释为页面路径的相对路径。
在实习/问题页面中,此相对页面转换为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
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)