我使用
https://github.com/angular-ui/ui-router库.当我尝试访问索引路由(‘/’)时,我被重定向到404.代码:
原文链接:https://www.f2er.com/angularjs/140714.htmlangular.module('cr').config(function($stateProvider,$urlRouterProvider) { $stateProvider .state('home',{ url: '/',templateUrl: 'views/index.html' }); $urlRouterProvider.otherwise('/404'); });
那个代码怎么了?虽然当我使用ui-sref =“home”时,它的工作原理是url看起来像’/#/’,但是当用户输入站点名称时,他只使用域名,比如’mysite.com’,而不是’mysite.com/# /”