It has not worked with the previously proposed solutions, it has worked for me to create a redirection using javascript in the following way.
function redirection(destination){
window.location.href = "example.com/page.html#" + destination;
}
I leave it here in case someone serves you in the future.