0

I'm trying to create navigation between some categories while changing the link on click I need to get this localhost/blog/category/:category1 it works for the first category selected but when I click again I get this localhost/blog/category/blog/category/:category2.

I'm using LINK for redirection

<Link
  className="nav-link"
  aria-current="page"
  to={`blog/category/${item}`}
>

thank you

Ahmed Zrouqui
  • 356
  • 1
  • 4
  • 13

1 Answers1

1

try this :

<Link
  className="nav-link"
  aria-current="page"
  to={`/blog/category/${item}`}
>
Nokwiw
  • 386
  • 4
  • 11