本文介绍在web.py中设置favicon.ico的方法:
如果没设置favicon,后台日志是这样的:
1
|
127.0 . 0.1 : 4133 - - [ 03 / Sep / 2015 18 : 49 : 53 ] "HTTP/1.1 GET /favicon.ico" - 303 See Other
|
由于浏览器会自动去获取这个文件,在web.py中可以这样设置:
设置步骤:
0、把favicon.ico图标拷贝到staic目录下,我这里是放在/static/res/目录下
1、在urls中添加映射规则:
1
2
3
4
|
urls = (
'/' , 'Index' ,
'/favicon.ico' , 'Icon' ,
)
|
2、编写Icon类:
1
2
3
|
class Icon:
def GET( self ):
raise web.seeother( "/static/res/favicon.ico" )
|
3、效果:
1
2
|
127.0 . 0.1 : 4427 - - [ 03 / Sep / 2015 18 : 58 : 49 ] "HTTP/1.1 GET /favicon.ico" - 303 See Other
127.0 . 0.1 : 4427 - - [ 03 / Sep / 2015 18 : 58 : 49 ] "HTTP/1.1 GET /static/res/favicon.ico" - 200
|
以上这篇对web.py设置favicon.ico的方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/zgyulongfei/article/details/48196667