多个斜杠级别的角度路由不起作用

时间:2016-06-10 11:46:50

标签: angularjs routes angular-ui-router

我面临一个奇怪的问题

http://localhost/people工作正常

http://localhost/people/aaa无效

我的httaccess文件是

Options +FollowSymLinks -MultiViews

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)$ /index.php?action=$1 [L]

路线文件就像这样

        .when('/people/aaa', {
            templateUrl: 'sub/santosh-babu.php',
            controller: 'cntrl'
        })
        .when('/santosh-babu', {
            templateUrl:'sub/santosh-babu.php'
        })

我希望“/ people / aaa”替换为“/ people /:param”并在路由url中使用,并且还想在“sub / santosh-babu.php?key = + param”中检索param的值。 PARAM“

请指导

由于

0 个答案:

没有答案