It seems trivial enough but I can't find a valid answer to this problem.
Suppose I have two different links '/' and '/home' and I want them to point to the same view. (This means whether user opens xyz.com or xyz.com/home, same page will be displayed).
In pyramid I tried
config.add_route('home','/')
config.add_route('home','home/')
But it raises the following exception
pyramid.exceptions.ConfigurationConflictError: Conflicting configuration actions
For: ('route', 'home')
How should I actually implement this?