Closed AlefNaught closed 4 years ago
Hi,
Check your config
file, looks like something with permalinks or baseurl
.
Maybe this can help you: https://jekyllrb.com/docs/troubleshooting/#base-url-problems or https://jekyllrb.com/docs/permalinks/
Hope this helps 😉
Best, R
Just for future reference and to help any other folks like me that got stuck here.
I had to disable/comment out "permalink: pretty" in _config.yml
I also made these changes in _config.yml:
collections: pages: output: true
posts: output: true permalink: /:categories/:year/:month/:day/:title:output_ext
Finally, I had to add permalinks to the front matter of about.md and search.md: permalink: /about/ permalink: /search/
Then deployed to vercel and everything is linking properly.
This was just my work around, since I just needed it to work quickly. Thanks for an awesome theme @ronv !
Hi forgive me because I'm kind of a noob.
When I use the local development server I can access my posts like this. /2020/06/29/blogpostname
But on the live server it tries link to that same post and 404's. I can still access the post but I have to add .html to it like this. /2020/06/29/blogpostname.html
Any idea how I fix this?