I can't seem to figure out how to add an extra "/" to the end of my website's URL without affecting the URLs that are referenced in the file.
So, I want to change the URL from
http://url.com/home
to
http://url.com/home/
without affecting the URLs that are embedded in the files.
Do you have any idea on how to do this?
Thanks, Rob
You can use <base>
tag in <head>
section
<head>
<base href="http://mydomain.com/" />
</head>
With this all relative links will be prefixed with given base
.