Reputation: 43833
In my page, the current link is
https://mydomain/en/tools/mytool
I now want to go to
https://mydomain/en/tools/mytool/faqs
How can I create an a tag
with a href
value that goes to /faqs
using relative links?
I tried
<a href="./faqs">link</a>
But the result is just
https://mydomain/en/tools/faqs
Does anyone know?
Thanks
Upvotes: 1
Views: 106