omega
omega

Reputation: 43833

How to create a relative link from a link with no extension in html?

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

Answers (1)

j08691
j08691

Reputation: 207861

You would use just:

<a href="faqs">link</a>

Upvotes: 1

Related Questions