/ allows the index page (Check the checkbox "Allow index page")* allows a single term with an arbitrary value (e.g. category/*/page/*)** permits all possible combinations of terms (e.g. category/**) This wildcard is only allowed at the end of a route/foo/*/bar/** Wrong: /foo/ba*/test**If you locked yourself out, you can disable the active routing with editing wp-config.php:
Add the line: define(ALWDRTS_DISABLE_ROUTING, true);
After reviewing the problem change the value back to false (or remove the line again) to be able to use the routing functionality again.
This should not happen, but if other plugins interfere with the backend routes, this is an emergency exit. The routing gets disabled and the backend can be accessed again.
/ (or check the checkbox "Allow index page")
contact
* (1 term with arbitrary value)page/*
* (1 term with arbitrary value)category/*/page/*
** (multiple terms with arbitrary values)archive/**
(This wildcard is only allowed at the end of the route)
** (multiple terms with arbitrary values)/**
This route allows all requests except the index page.