whatland
whatland

Reputation: 1

Git Hub Pages not Deploying. (404)

I am new to web-development. I am trying to just start off by deploying my 1 page website just to sort of see how it works.

I followed all of the steps that I saw on a tutorial and I just get a 404. (file not found) https://juteland.github.io

Here is my repo. https://github.com/Juteland/juteland.github.io

If someone is good at this and can tell me what I am doing wrong that would be great!

Thanks!

Upvotes: 0

Views: 93

Answers (3)

Nitin
Nitin

Reputation: 53

Try this:

https://juteland.github.io/Documents/WebDev%20/IsomodularWebsite/

You have page on above link. You don't have index.html page on that directory. Hence it is showing 404 not found.

Upvotes: 2

Nitin Bisht
Nitin Bisht

Reputation: 5351

There are two directories inside juteland.github.io as per your github link:

  1. Desktop/IsomodularWebsite
  2. Documents/WebDev /IsomodularWebsite

As I am able to see both the directories contain the same number of files and both are duplicates.

Try the following steps:

  1. You delete one of them. (Let's say you delete Documents/WebDev /IsomodularWebsite)
  2. Move all files of Desktop/IsomodularWebsite inside juteland.github.io directly and then delete Desktop/IsomodularWebsite also.

Upvotes: 1

Geno Chen
Geno Chen

Reputation: 5214

It is really 404, because you don't have index.html or index.htm or something that is specified as the entry point as a webpage in your repository root.

Your webpage is there, https://juteland.github.io/Documents/WebDev%20/IsomodularWebsite, with "strange" long URL.

Why do you put your web page inside such a long and meaningless folders?

Upvotes: 0

Related Questions