I know that there's a meta tag to change the page's resources' incompleted URLs.
For example:
If I were to load a JS file using a <script>
tag to get the file main.js, then the page would auto-complete the src from "./main.js" to "https://example.com/main.js"
<!-- This file is hosted on https://example.com -->
<script src="./main.js"></script><!-- will load https://example.com/main.js -->
But when you add the meta tag that I've talked about previously and set it to auto-complete with "https://example2.com" and tried to load the same JS file in "https://example.com" the website would load the file from "https://example2.com"
<!-- This file is hosted on https://example.com -->
<meta name="..." url="https://example2.com">
<script src="./main.js"></script><!-- will load https://example2.com/main.js -->
What's the name of that meta tag? And, if what I said wasn't true, is there any other way to achieve the same behavior?