我启动了一个干净的AEM 5.6.1发布实例,我正在尝试更改默认的管理员密码。我转到http://localhost:4503/libs/granite/security/content/useradmin.html,但页面无法正确加载。我能够告诉某些文件正确加载(jquery.js,utils.js),但其他文件(userpicker.css,userpicker.js)使用JavaScript重定向进行响应:
<html>
<head>
<script type="text/javascript">var u="/content/geometrixx/en/toolbar/account/login.html?resource=%2Flibs%2Fgranite%2Fui%2Fcomponents%2Ffoundation%2Fform%2Fuserpicker%2Fclientlibs%2Fuserpicker.css&$$login$$=%24%24login%24%24"; if ( window.location.hash) {u = u + window.location.hash;} document.location = u;</script>
</head>
<body>
<!-- QUICKSTART_HOMEPAGE - (string used for readyness detection, do not remove) -->
</body>
</html>
有趣的是,虽然我无法访问userpicker.css,但我可以毫无问题地导航到userpicker / userpicker.css。
有人能解释一下这里发生了什么,以及我需要做些什么来纠正这种行为?