this hook allows you to redefine the URI of the current page. This is useful when there is no variable configured in the server - $_SERVER['REQUEST_URI']
An Example:
add_filter('avalon23_override_request_uri', function($uri){
$uri = '/shop/';
return $uri;
});