我正在尝试在当前正在运行的网站的特定网址中运行AngularJS应用程序:
http:example.com/some-slug/#/angular-app-route
我无法在我们的网站上删除当前路由的#signas。我该如何定义路线?
This answer并没有帮助我因为我无法移除#和#在Angular应用程序路由中间不起作用,就像我尝试过这样,但还没有成功:
app.config(function($routeProvider, $locationProvider) {
$routeProvider
.when('/:event-slug/#/angular-route-1', {
templateUrl: '/templates/template-1.html',
controller: 'route1Ctrl'
})
.when('/:event-slug/#/angular-route-2', {
templateUrl: '/templates/template-2.html',
controller: 'route1Ctr2'
});
$locationProvider.html5Mode(false);
});