The category links on my link pages do not link to the category link pages - the URL is wrong. Why?
If your problem is that the URLs of your category link pages are something like this:
http://www.my-domain.com/resources/category.html
...but the category links erroneously point to a URL that leaves out the name of the directory that your link pages are in, like this:
http://www.my-domain.com/category.html
...then the problem is most likely the use of the "base" html tag in your link page template, such as this:
<BASE HREF="http://www.my-domain.com/">
This tag causes every "relative" link on the page (that is, every link that only specifies its filename, rather than its full URL) to be considered relative to the URL specified in the tag, rather than relative to the current directory.
This simplest way to fix this is by going to Change Settings, Link Page Format, Advanced Settings, and check the checkbox labelled Use Absolute URLs, then click Submit Changes.
Another solution is to remove the BASE tag line from your page template file. Of course, it may have been in there for a reason to begin with - there may be other relative links in your page template that relied on that line, and will not work correctly without it. If so, replace those relative links with the full (absolute) version of the same link, by just using the full URL (with domain name) in those links.