I have a html page that is in a subdomain folder and it keeps adding the subdomain to all the links. Example: httx://www.random.com becomes httx://www.subbie.random.com I want to remove this and forgot for the line I should be looking for in the code? Went over a few times on a few pages and nothing seems familiar. I have done this before but never have un-done it. I have a few pages in the subdomain that are coming alive which sucks because they are forcing the links to lead to "not found" pages. Thanks in advance buds.
Heya, could you copy and paste the code for that html page? My first thought is that you have relative linking... i.e. <a href="index.html">Link</a> Code (markup): instead of <a href="http://www.random.com/index.html">Link</a> Code (markup):
Most likely this is the cause of this problem. Use complete address in this format <a href="http://www.random.com/index.html">Link</a> and the problem will be gone.