Keon Kim
Keon Kim

Reputation: 760

Special Url for Jekyll out of Base URL

I am using jekyll to setup my blog.

# Site Settings
baseurl:            "/blog" # Base URL must end WITHOUT a slash, default: ""

My site baseurl setting is /blog.

I want to redirect or show a specific page to users when they reach "/". now it just shows 404.

is there any way i can configure this?

Upvotes: 0

Views: 56

Answers (1)

David Jacquel
David Jacquel

Reputation: 52789

If your blog is in the github.com/userName/blog reporitory, it can be reached at username.github.io/blog/.

If you try to reach username.github.io/ and you get a 404, you need to create an index page in your github.com/userName repository.

Upvotes: 1

Related Questions