配置说明:需要操作的地方有两处,分别是
application.yml ShiroConfig.java(com.ruoyi.framework.config.ShiroConfig#shiroFilterFactoryBean)
将根路径设置为匿名访问,将以下代码添加到ShiroConfig.java#shiroFilterFactoryBean中
// 让shiro不拦截路径“/”,不加则会自动跳转到登陆页面 filterChainDefinitionMap.put("/", "anon");
将需要配置页面的路径配置为匿名访问,将以下代码添加到ShiroConfig.java#shiroFilterFactoryBean中
// 这里我是用的首页是/web/index // 使用“/web/**”是将以“/web/”为前缀的请求设置为匿名访问 // 如果不设置,访问/web/index则会跳转到登陆页面 filterChainDefinitionMap.put("/web/**", "anon");
修改application.yml文件中的首页地址
# 这是是将首页跳转地址修改到/web/index上 shiro: user: indexUrl: /web/index