On Fri, Oct 23, 2020 at 12:00 AM sciUser <[email protected]> wrote:
> Is there away to remove the # form the url ? > > sample https://domainname.com/guacamole/#/client > > Thanks > > No. The hash is what tells the browser what anchor to go to - in more legacy web pages this would just tell the browser to go to a particular anchor in the page. For the past few years JavaScript frameworks have used this to do web application routing within the browser. So every part of the URL before the hash is something that is sent to the server to process, and everything after the hash tells the web application where to go within the code already loaded in the browser. Is there some reason you need/want to remove the hash? -Nick
