当我去路线时,localhost/project_root/items
我得到一个页面不存在错误。但是,localhost/project_root/#/items
正在工作。
我可以以某种方式使用常规链接,<a href="items">
而不是这样做<a href="/#/items">
吗?
这是我的路线
myApp.config(function($routeProvider) {
$routeProvider.
when('/items', {
templateUrl: 'js/modules/items/partials/items.html'
}).