You can set default_controller and default_function in routes.py but that changes it for your whole app.
But why change this? I always advise not changing this. One thing you could
do instead is:
def index():
redirect('other_controller', 'other_function')

