基本标签无法正常工作

Pet*_*art 2 html base hyperlink

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

<base href="http://example.com/dev/">
Run Code Online (Sandbox Code Playgroud)

在这个页面(http://example.com/dev/index.php/foo/bar/)我有这个代码:

<link rel="stylesheet" type="text/css" href="style/common.css" />
Run Code Online (Sandbox Code Playgroud)

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

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" />
Run Code Online (Sandbox Code Playgroud)

难道我做错了什么?

彼得

小智 5

我遇到了类似的问题.当页面通过cgi进行馈送时出现问题.这不适合我:

<base href="http://example.com/dev/">
Run Code Online (Sandbox Code Playgroud)

但是,以下是:

<base href="/dev/">
Run Code Online (Sandbox Code Playgroud)