如何为 HTML 页面上的所有链接分配特定域?

How to assign a specific domain to all my links on my page in HTML?

您好,我正在制作一个静态网页,我需要为我网页上的所有链接添加一个特定的域,例如

示例:

由此

<a href="/courses.html">courses</a>

像这样

<a href="http://www.bigschool.com/courses.html">courses</a>

假设您使用的是纯HTML,您可以尝试通过以下示例代码手动启用base标签:

<head>
    <base href="http://www.bigschool.com/" target="_blank">
</head>

详情请阅读here