jamesknelson / create-react-blog

Start and deploy your own statically rendered blog with create-react-app
https://create-react-blog.netlify.com/
MIT License
550 stars 69 forks source link

Problem with about,tags pages if there is more than 1 page. #18

Closed nenadfilipovic closed 5 years ago

nenadfilipovic commented 5 years ago

I have set to display 5 posts per page, in that case blog creates new page. When you go to that page about and tag page are not reachable, their path become /page/2/about and blog throws 404 error. I have fixed that by editing create-react-blog/template/src/components/BlogIndexPage.js file, in that file there are ./about ./tags ./rss.xml. Just remove dots so it become /about /tags /rss.xml and it is working. Thanks for great blog. :)

jamesknelson commented 5 years ago

Glad it's working! Any chance you could submit a PR with the fix?

nenadfilipovic commented 5 years ago

Yea I submited request.