What's the base tag in the 404 page for? #203
-
I was working on changing part of the site, then I looked at the 404 page, and found that it didn't work. After looking into it, I can conclude that it's simply because of the base tag. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The base tag means that all relative URLS on that page will base off of the contents of the tag. For local development, you need to change it to how your filesystem is set up. For example, if your forumhelpers clone was at file:///C:/Users/USER/Downloads/theforumhelpers, then you would have to add that to the base tag so the relative URLs are based off of that path. |
Beta Was this translation helpful? Give feedback.
The base tag means that all relative URLS on that page will base off of the contents of the tag. For local development, you need to change it to how your filesystem is set up. For example, if your forumhelpers clone was at file:///C:/Users/USER/Downloads/theforumhelpers, then you would have to add that to the base tag so the relative URLs are based off of that path.