[SOLVED] Problem with Routes on second click

Hello F7-Community, I am new in F7 and now I have a problem with my routes, I hope anybody can help me, because I couldn’t find some help.

I have some links in my left-panel, the routes are working, if i click on a link it shows the page…but if I click on the back-link and the i will go to the same page again it doesn’t work.

Here are some extracts from my code:
Back-Link:

<a href="#" class="link back" data-reload-previous="true" data-ignore-cache="true">

Route:

{
  	path: '/quickstats/',
	url: './pages/quickstats.php',
},

Link in the left-panel:

                    <li>
    			      <a href="/quickstats/" class="item-content panel-close">
    			        <div class="item-media"><i class="icon f7-icons" style="color:orange;">pie</i></div>
    			        <div class="item-inner">
    			          <div class="item-title">QuickStats</div>
    			        </div>
    			      </a>
        			</li>

Sorry for my bad english I hope you can understand what I mean.

Greetings from Germany.

Back link should be just:

<a href="#" class="link back">

But would be good to see live example with the issue

Big thanks to you. It worked for me. This solution was so easy and I couldn’t see it. Thanks.