角度:1.1.5
我转到:http://xxxxx.com/route1/route2/route3
触发而不是触发
在HTML5模式关闭的情况下工作正常…:。(
nginx配置
location / {
index index.html;
try_files $uri $uri/ /index.html?$args;
}
我的应用程序配置
$routeProvider.when('/route1/route2/route3', {
templateUrl: '/views/home.html',
controller: 'HomeCtrl'
});
$routeProvider.when('/route3', {
templateUrl: '/views/home.html',
controller: 'HomeCtrl'
});
$locationProvider.hashPrefix('!');
$locationProvider.html5Mode(true);
/route3
日志:$$protocol: "http", $$host: "xxxxxx"…}
$$absUrl: "http://xxxxxxx.com/route1/route2/route3"
$$hash: ""
$$host: "10.44.11.73"
$$path: "/route3"
$$port: 80
$$protocol: "http"
$$replace: false
$$url: "/route3"
如何更改设置以使HTML5URL与嵌套路由一起工作?
最佳答案
对于单页应用程序,这是您在nginx配置中所需的全部:
server
{
server_name example.com *.example.com;
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
root /var/www/html/example;
index index.html;
location / {
try_files $uri /index.html;
}
}
关于html5 - AngularJS HTML5嵌套路由,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17154378/