This question already has an answer here:
- Difference between Relative path and absolute path in javascript 8 answers
What is the difference between:
<meta http-equiv="refresh" content="0; url=/file.html" />
and
<meta http-equiv="refresh" content="0; url=file.html" />
I am calling this from domain.com/folder/index.html The first one would redirect to the domain.com/file.html and the other one to domain.com/folder/file.html. Why?