website
website copied to clipboard
kserve github page throws a 404 error
Expected Behavior
https://kserve.github.io/ works
Actual Behavior
https://kserve.github.io/ returns a 404
Steps to Reproduce the Problem
- Go to https://kserve.github.io/
- See the 404 error being thrown
This could be fixed in two ways:
-
Rename this repository to
kserve.github.ioso that the site is published athttps://kserve.github.io(without the trailing /website) -
Create a new
kserve.github.iorepository under the kserve org with anindex.htmlwith 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/latestcan be replaced with justwebsite/, although there'd be two redirects in a row