Werkzeug http route rewrite

248 Views Asked by At

I want to make a kind of "main route" so I get it on every page. I want to add few operations with url before redirection to the specific route.

What url mask should i use to catch all urls?

@http.route(['/any_url_here'])

Thanks

1

There are 1 best solutions below

1
On

Try

@http.route([
             '/',
             '/<path:path>',
             ], type='http', auth="public", website=True)
def anything(self, **post):
    ...