I have following files:
index.html
car.html
truck.html
mainCtrl.js
carCtrl.js
truckCtrl.js
and want to make such routes:
#/search (template: index.html, controller: mainCtrl.js)
#/search/car (template: car.html, controller: carCtrl.js)
#/search/truck (template: truck.html, controller: truckCtrl.js)
index.html contains two links one which must redirect to #/search/car and second: #/search/truck
car.html & truck.html must load in nested view
Please someone help me to accomplish this task