我試圖從瀏覽器中碼的手動重新加載頁面,但它不工作,說Angularjs路由不工作重新加載頁面手動
Cannot GET /rate/4
我的路由時:
angular.module('routing')
.config(function ($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl: 'app/views/index.html'
})
.when('/rate/:cid', {
templateUrl: 'app/views/rate.html'
})
.otherwise({
'redirectTo': '/'
});
$locationProvider.html5Mode(true);
});
我的假設是當我重新加載主(index.html)不加載這是我的基本html文件。
由於您使用'html5mode',因此您將需要服務器端配置。 –
@ AlbertoI.N.J。我是新手......不知道你的意思是什麼 – user3100209
你在用什麼服務器? –