I am having a simple web application which has some static pages. The URL which comes in the browser address bar simply depends on file location in the project.
http://computername:8080/mylogin/ is my home URL.
And below are the few URLs which come when I make a single click on the main home page.
http://computername:8080/mylogin/ssis/api.jsf
http://computername:8080/mylogin/ssis/dev.jsf
I am implementing a breadcrumb. And to generate it I am using javascript by Justin Whitford. Issue is this breadcrumb uses the browser URL to generate it. So my URL should be in some common fashion/pattern to have breadcrumb implemented properly.
I want to control these URLs. I want to make them like this.
Home: http://myLogin/
sub pages:
http://mylogin/ssis/api/
http://mylogin/ssis/dev/
All this I want to have a proper implementation of breadcrumbs.