website icon indicating copy to clipboard operation
website copied to clipboard

kserve github page throws a 404 error

Open taneem-ibrahim opened this issue 2 years ago • 1 comments

Expected Behavior

https://kserve.github.io/ works

Actual Behavior

https://kserve.github.io/ returns a 404

Steps to Reproduce the Problem

  1. Go to https://kserve.github.io/
  2. See the 404 error being thrown

taneem-ibrahim avatar Nov 22 '23 17:11 taneem-ibrahim

This could be fixed in two ways:

  • Rename this repository to kserve.github.io so that the site is published at https://kserve.github.io (without the trailing /website)

  • Create a new kserve.github.io repository under the kserve org with an index.html with the following content:

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>Redirecting</title>
      <noscript>
        <meta http-equiv="refresh" content="1; url=website/latest/" />
      </noscript>
      <script>
        window.location.replace("website/latest/" + window.location.hash);
      </script>
    </head>
    <body>
      Redirecting to <a href="website/latest/">latest/</a>...
    </body>
    </html>
    

    website/latest can be replaced with just website/, although there'd be two redirects in a row

dtrifiro avatar Nov 29 '23 11:11 dtrifiro