I have a main page that redirects to another page called example.com
the code of the main page is:
<! DOCTYPE html>
<html>
<body>
<h2> Redirect to a Webpage </h2>
<p> The replace () method replaces the current document with a new one: </p>
<button onclick = "myFunction ()"> Replace document </button>
<script>
function myFunction () {
location.replace ("https://www.example.com")
}
</script>
</body>
</html>
example.com shows “Original Webpage” if you enter directly
the code for example.com is:
<! DOCTYPE html>
<html>
<body>
<h2> Original Webpage </h2>
</body>
</html>
I want that when redirecting from the main page to example.com, example.com shows “modified page”.
then you should change <h2> Original Webpage </h2>
from main page before entering example.com