etc, current page and link: '/lessons/4' which is a normal page without emberjs and I want to redirect to
'/#/sections/2'
<a href="/#/sections/2">next_page</a>
Because the link is with hash, it will not reload in the next_page.
So how can I force it to reload?
My current solution is
<a href="#" onclick="javascript: window.location.reload(); window.location.href = '/#/sections/2'">Start</a>
Do you have any better solutions?