欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

设置地址栏前的图标

程序员文章站 2022-06-03 17:50:02
...

1,找一个16px * 16px 的图片,文件命名为 favicon.ico

2, 将该文件复制到根目录下

设置地址栏前的图标

3,在页面中加入

<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<Link Rel="SHORTCUT ICON" href="<%=basePath%>favicon.ico">

 

相关标签: 设置页面小图标