【发布时间】:2014-10-31 14:55:59
【问题描述】:
我在所有页面的顶部都有这段代码:
<base href="http://example.com/dev/">
在这个页面 (http://example.com/dev/index.php/foo/bar/) 我有这个代码:
<link rel="stylesheet" type="text/css" href="style/common.css" />
但是我的浏览器一直在尝试加载:
什么时候应该:
**更新**
<html>
<head>
<base href="http://example.com/dev/" />
<link rel="stylesheet" type="text/css" href="/style/video.css" />
<link rel="stylesheet" type="text/css" href="/style/common.css" />
我是不是做错了什么?
彼得
【问题讨论】:
-
style/是一个相对 URL。尝试改用/style/common.css -
<base>必须位于具有href属性的任何内容之前。确保<base>是第一个。 -
@briansol 相对 URL 与基本元素一起使用。
-
头部最顶部的基本网址
-
试试
<base href="http://example.com/dev/index.html">或 index.php。我认为这可能与您的 .htaccess 文件或某种 apache 重写有关。