mirror of
https://gitee.com/anji-plus/report.git
synced 2026-05-20 08:47:18 +08:00
bugfix----index路由跳转问题
This commit is contained in:
@@ -85,7 +85,12 @@ public class TokenFilter implements Filter {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (SLASH.equals(uri) || SLASH.concat(BusinessConstant.SLASH).equals(uri)) {
|
||||
if (BusinessConstant.SLASH.equals(uri)) {
|
||||
response.sendRedirect("/index.html");
|
||||
return;
|
||||
}
|
||||
response.sendRedirect(SLASH + "/index.html");
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user