Allow slashes in route parameter on React
Yes, you can do this by adding a +
to your Route path. So, like this:
<Route path="/blog/:date/:folder+" ... />
This library is being used for matching the path. So for more advanced matching cases this is a better place to look at then the React Router docs.