We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://kserve.github.io/ works
https://kserve.github.io/ returns a 404
The text was updated successfully, but these errors were encountered:
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)
kserve.github.io
https://kserve.github.io
Create a new kserve.github.io repository under the kserve org with an index.html with the following content:
index.html
<!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
website/latest
website/
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
https://kserve.github.io/ works
Actual Behavior
https://kserve.github.io/ returns a 404
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: