There is only the second half of the href in the html source code of the web page. Why?


URL is divided into absolute address and relative address. What the landlord sees now is the relative address.
assume that the domain name of the website is www.1234.com . If there is such a href in the page, then its complete hyperlink is www.1234.com/viewthread.php?tid=79118 . Click on this link and request this address to the backend.


relative path, if the protocol header and domain name are not given, it will be automatically completed according to the current protocol header and domain name; if there is a < base > tag, it will be completed according to the tag; or if it appears, such as .. / , it will be located to the parent directory of the current file URI location, and then complete the corresponding URI.


relative path


actually this is mainly

Menu