We are working on website where we using AngularJs. Is there any way to make AngularJs user-friendly urls and seo-friendly urls
Want
application/#user/add
to
application/User/Add
In AngularJs.
HTML 5 mode convert hash based urls into Query string based url.
like
Hashbang URL - http://foo.com/#!/bar?baz=23#baz
HTML 5 Mode - http://foo.com/bar?baz=23#baz
But I want make my url like this
http://foo.com/bar/baz/23/baz (Fully SEO Friendly url)