I have this states: first one in partial view and second one is html page and they are in folder View/Account.First one is working but secondone is not.It say 404 page could not be found. How can i configure state for .html page.Any suggestion?
.state('account.payoutconfirmation', {
url: '/ticketprint',
templateUrl:
function (stateParams) {
return mainTemplateService.getTemplateUrl(stateParams, '/account/payoutconfirmation');
}
}).state('account.state', {
url: '/printticket',
templateUrl:
function (stateParams) {
return mainTemplateService.getTemplateUrl(stateParams, "/account/state.html")
}