我在http://localhost:3000
上托管了一个网络应用
在该网络应用上,我有一个src="http://localhost:8000
我的问题是,iframe中的相对路径使用的是http://localhost:3000
而不是http://localhost:8000
,即使我在iframe中有基本标记
main.html:http://localhost:3000
<iframe src="http://localhost:8000"></iframe>
iframe.html:http://localhost:8000
<!DOCTYPE html>
<html lang="en">
<head>
<base href="http://localhost:8000/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="/static/assets/css/index.css">
<!-- this is using http://localhost:3000 instead of http://localhost:8000 -->
</head>
<body>
</body>
</html>
我在某处做错了吗?