'How can i navigate to another page with re-render page using react router V6

I want to navigate to another page and re-render the page by react router V6. I'm trying:

navigate("/anotherPage",0);

but it's not work.

 window.location.reload(false);

doesn't right in my case.

How can i do it?



Solution 1:[1]

Just use:

location.href = "/anotherPage";

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Christian Fritz