Search code examples
htmlgithubgithub-pages

Redirecting my websites index page to another page in my website?


I don't know how to redirect my index page to another page like when you go to www.example.com it redirects to www.example.com/home. I use GitHub pages for this how can I do this.


Solution

  • <meta charset="utf-8">
    <title>Redirecting to https://example.com/</title>
    <meta http-equiv="refresh" content="0; URL=https://www.example.com/home">
    <link rel="canonical" href="https://www.example.com/home">
    

    Try putting this in your <head></head> in your index.html file.