Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kserve github page throws a 404 error #321

Open
taneem-ibrahim opened this issue Nov 22, 2023 · 1 comment
Open

kserve github page throws a 404 error #321

taneem-ibrahim opened this issue Nov 22, 2023 · 1 comment
Labels

Comments

@taneem-ibrahim
Copy link
Contributor

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
@dtrifiro
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants