1 把favicon.ico上传到
$FINEBI_ROOT/webapps/webroot/
上传后的网站icon文件应该长这样:
$FINEBI_ROOT/webapps/webroot/favicon.ico
2 修改以下两个文件
- index.html
位于fine-cbb-11.0.jar的com/fr/web/controller/decision/entrance/resources/index.html
在html中<head></head>之间随便找个位置新增一行:
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
- login.html
位于fine-cbb-11.0.jar的com/fr/web/controller/decision/entrance/resources/login.html
在html中<head></head>之间随便找个位置新增一行:
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
(注意和index.html相比,favicon.ico的相对路径href有轻微不同)
修改后的文件应该长这样:
------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=${charset}">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>${title}</title>
-----新增下面这行-----
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<link rel="preload" href="${fineServletURL}/resources?path=/com/fr/web/ui/font/iconfont.woff" as="font" type="font/woff" crossorigin>
<!--css文件-->
${styleTag}
</head>
------------------------------------------------------------------