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 to have a manual.html in the root folder that links to the index.html. I can put the following in manual.html:
<a href="manual/_build/html/index.html">link</a>
which makes a clickable link to index.html. I would like to be send directly to index.html without having to click on anything. Is this possible?
Thanks, Niek
Just redirect it to index.html..Write this in manual.html...
Add the following to your HTML
<head>
tag: