http
Content-Security-Policy: base-uri 'self'; default-src 'self'; script-src 'self' https://cdn.example.com
<!DOCTYPE html>
<html>
<head>
<base href="/">
<!-- Erlaubt, da same-origin -->
</head>
<body>
<a href="api/users">Users</a>
<!-- Wird zu /api/users, nicht zu https://evil.com/api/users -->
</body>