我得到一個錯誤,當我要求的鏈路與此網址:http://xxx:46630/
或與此http://crmbyzaid.azurewebsites.net/
如何設置默認頁角
但它的工作很好,當我加'/index.html'
與URL。現在我想設置默認渲染我的部分頁面「應用程序/儀表板/ dashboard.html」當我要求只是http://crmbyzaid.azurewebsites.net/
我的配置,route.js代碼
function routeConfigurator($routeProvider, routes) {
routes.forEach(function (r) {
$routeProvider.when(r.url, r.config);
});
$routeProvider.otherwise({ redirectTo: '/' });
}
function getRoutes() {
return [
{
url: '/',
config: {
templateUrl: 'app/dashboard/dashboard.html',
title: 'dashboard',
settings: {
nav: 1,
content: '<i class="fa fa-dashboard"></i> Dashboard'
}
}
}, {
url: '/admin',
config: {
title: 'admin',
templateUrl: 'app/admin/admin.html',
settings: {
nav: 1,
content: '<i class="fa fa-lock"></i> Admin'
}
}
}
]
}
當您嘗試訪問根網址時,您遇到了什麼錯誤? – Fedaykin 2014-10-12 14:12:56
@Fedaykin服務器錯誤在'/'應用程序 – 2014-10-13 05:37:18