Thanks Dave, I've been searching through the source code for the classes/methods that render these URLs. What are your thoughts on my earlier email re. discrepancies in URL paths?
**WebloggerRuntimeConfig.java** /** * Get the absolute url to this site. * * This method will just return the value of the "site.absoluteurl" * property if it is set, otherwise it will return the non-persisted * value which is set by the InitFilter. */ public static String getAbsoluteContextURL() { // db prop takes priority if it exists String absURL = getProperty("site.absoluteurl"); if(absURL != null && absURL.trim().length() > 0) { return absURL; } return absoluteContextURL; } **URLModel.java** /** Absolute URL of Roller, e.g. http://localhost:8080/roller */ public String getAbsoluteSite() { String weblogAbsoluteURL = WebloggerConfig.getProperty("weblog.absoluteurl." + weblog.getHandle()); if (weblogAbsoluteURL != null) { return weblogAbsoluteURL; } else { return WebloggerRuntimeConfig.getAbsoluteContextURL(); } } Chris. > I'd be happy to share my configs and hope to do so later this eve. > > - Dave