Skip to content Skip to sidebar Skip to footer

Is It Possible To Have An Html Link That Links To A Different Html Page Without Clicking?

I have some autogenerated html documentation for a python project. When autogenerating this the 'main page' is created as index.html inside /manual/_build/html/index.html. I want t

Solution 1:

Add the following to your HTML <head> tag:

<metaHTTP-EQUIV="REFRESH"content="0; url=index.html">

Solution 2:

Just redirect it to index.html..Write this in manual.html...

<script>document.location = "manual/_build/html/index.html";
</script>

Post a Comment for "Is It Possible To Have An Html Link That Links To A Different Html Page Without Clicking?"