我想从而http://mysite.com/hello/world不是从站点根目录开始导航。
http://mysite.com/hello/world
例如
$routeProvider .when('/myurl', { templateUrl: 'mytmpl.html', controller: 'MyCtrl' });
当我的网址是 http://mysite.com/hello/world/myurl
http://mysite.com/hello/world/myurl
我该怎么办?
当用户导航到时,将基本标记添加到正在提供的主HTML文件中http://example.com/hello/world:
http://example.com/hello/world
<base href="/hello/world/" />
可以在开发人员指南/使用$ location中找到更多信息。