当我登录Alfresco时,它直接将我带到Dashboard。但是我想在登录时打开Repository页面。请告诉我在哪个文件中我需要更改链接以重定向到Repository页面,这样当我登录时,我只能看到文档,即Data Dictionary,User Homes? 。我注意到当我使用用户名和密码登录并点击登录按钮时,Rest Url是“share / page / dologin”。在此dologin文件中,提到了指向仪表板的链接。但我不知道Dologin的映射。有人可以帮忙吗?
先谢谢你
答案 0 :(得分:4)
您可以修改site-index.jsp(在共享webapp的根目录中)以重定向到文档库而不是用户的仪表板。
更改行
response.sendRedirect(request.getContextPath() + "/page/user/" + URLEncoder.encode(userid) + "/dashboard");
到
response.sendRedirect(request.getContextPath() + "/page/repository");
这应该在登录时将每个人重定向到存储库页面。