to href URL refresh or stop loop

0

I'm using href for a horizontal nav menu, the problem is that every time you click on a category, you get over infinitely.

I'm trying to get that every time you click on the Games or Sports menu, the URL of the page will refresh and there will not be a looping URL.

<a href="category/juegos-bundles/"><li>Juegos</li></a>
<a href="category/juegos-bundles/"><li>Deportes</li></a>

Example:

www.example.com/games-bundles/games-bundles/games-bundles/

    
asked by emejota 02.08.2018 в 17:02
source

2 answers

1

To refresh the page from a link you can use this

<a href="."><li>Juegos</li></a>
    
answered by 02.08.2018 в 17:18
1

Adding the slash / category /, in front of the URL, was to blame for the failure.

Example Fixed:

<a href="/category/juegos-bundles/"><li>Juegos</li></a>
    
answered by 02.08.2018 в 17:54