That
is the current URL. However,
JSF is primarily based on form postbacks. The URL is more in the nature of a session handle than it is a page locator the way it is in most web frameworks.
To update the URL to indicate the name of the current View, use the "redirect" option on your page navigation. In faces-config, it's just a simple element in the navigation ruleset with no body or attributes like so: <redirect/>
Observe caution, however. It takes more than just this if you expect to produce URLs that can be bookmarked!