my Angular Code for stateProvider
.state('profile',{
url: '/profile',
templateUrl: 'Templates/profile.html',
controller: 'profileCtrl'
})
.state('profile.details',{
url: '/:id',
templateUrl: 'Templates/profile.details.html',
controller: 'profileCtrl'
})
when i write this in chrome bar http://localhost/site/profile/1
Apache Response is The requested URL /site/profile.html/1 was not found on this server.
but if i click on ui-sref link it's open well