基本标签无法正常工作

时间:2014-10-31 14:55:59

标签: html hyperlink base

我的所有网页顶部都有此代码:

<base href="http://example.com/dev/">

并在此页面中{http://example.com/dev/index.php/foo/bar/)我有以下代码:

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

但是我的浏览器一直在尝试加载:

  

http://example.com/dev/index.php/foo/style/common.css

应该是:

  

http://example.com/dev/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" />

我做错了吗?

彼得

1 个答案:

答案 0 :(得分:5)

我有类似的问题。当页面通过cgi进行馈送时出现问题。这对我不起作用:

<base href="http://example.com/dev/">

但是,以下是:

<base href="/dev/">