我和这个家伙有同样的问题:
angularjs-slash-after-hashbang-gets-encoded
URL被编码为未正确路由,在我的路由配置中看起来与fal相似。 没有运气但找到原因,我的URL重写工作正常。我唯一的例外是当我在HTML5模式下在URL中添加hashbang时。我期望回退到hashbang并将URL重写为html5模式。
任何人都知道这里发生了什么?
更新 我将详细说明先前提供的信息:
我在服务器端使用apache,并在.htaccess中使用以下配置:
Options +FollowSymLinks
IndexIgnore */*
DirectoryIndex index.html index.htm
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept"
</IfModule>
# html5 pushstate (history) support:
<ifModule mod_rewrite.c>
RewriteEngine on
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]
</ifModule>
我的$ locationProvider和路线配置:
App.config(function($routeProvider, $sceDelegateProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix('!');
$routeProvider.when('/route1/:param', {
templateUrl: '/html/route1.html',
controller: 'Route1Ctrl'
});
$routeProvider.when('/', {
templateUrl: '/html/route1.html',
controller: 'Route1Ctrl'
});
$routeProvider.when('/route2', {
templateUrl: '/html/route2.html',
controller: 'Route2Ctrl'
});
$routeProvider.when('/route3', {
templateUrl: '/html/route3.html',
controller: 'Route3Ctrl'
});
$routeProvider.when('/route4', {
templateUrl: '/html/route4.html',
controller: 'Route4Ctrl'
});
$routeProvider.when('/route5', {
templateUrl: '/html/route5.html',
controller: 'Route5Ctrl'
});
$routeProvider.when('/route6', {
redirectTo: '/route4'
});
$routeProvider.otherwise({
redirectTo: "/"
});
});
答案 0 :(得分:1)
我终于解决了两件事:
1.-我将<base href="/">
添加到index.html
2.-我激活了HTML5模式但没有前缀
这样我可以使用http://localhost/#/route
或http://localhost/route
,并且网址会被正确重写。