'Link not redirecting in visual studio
I am creating a basic website. I added some pages and linked them. I was able to redirect to the pages easily but I just rebooted mu computer and now the links don’t seem to work. enter image description here
Solution 1:[1]
this is the wrong syntax ?
<a href="/file.html">file</a>
use this ?
<a href="./file.html">file</a>
or ?
<a href="file.html">file</a>
read more about how file path works
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Kishan |
