trying to publish page and gaining an error #188728
-
|
Question I'm trying to publish a page temporarily for a school project, and I keep getting this error: 404 The site configured at this address does not contain the requested file. If this is your site, make sure that the filename case matches the URL as well as any file permissions. Read the full documentation for more information about using GitHub Pages. Here's my repository https://github.com/ldarling-hub/business_test_web |
Beta Was this translation helpful? Give feedback.
Answered by
BhuvanAde
Mar 5, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The issue might be the
index.htmlis NOT in the root that GitHub Pages is serving.What I see in your repo
Your files are inside this folder:
But GitHub Pages is trying to load from:
GitHub Pages expects:
not
So the root does not contain
index.html, which triggers the 404 error.Solution 1 — Move files to root (recommended)
Move everything out of
website/.Your repo should look like:
Then GitHub Pages will immediately work.
S…