2
我這裏有這樣的代碼在我所有的頁面的頂部:基礎標籤不能正常工作
<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" />
難道我做錯了什麼?
Peter
'風格/'是一個相對的URL。嘗試使用'/ style/common.css'而不是 – briansol 2014-10-31 14:59:18
' '必須在具有'href'屬性的任何事物之前。確保' '是第一個。 –
JakeParis
2014-10-31 15:00:44
@briansol相對URL與基本元素一起使用。 – JakeParis 2014-10-31 15:06:11