edited a url to get to a neocities user's profile page one too many times so I finally made a bookmarklet to do it automatically. It just reorders example.neocities.org/randompage to neocities.org/site/example. If you want to use it just change the url of any bookmark to the following code (clicking on it will inject the js):
javascript: (() => { x = String(window.location.href);y = x.replaceAll("https://", "");z = y.split('/')[0];a = z.replaceAll(".neocities.org", "");b = "https://neocities.org/site/" + a;window.location = b;})();
please note my epic variable names