推荐firefox下firecookie,yslow插件的安装

张映 发表于 2010-05-06

分类目录: 技术其他

标签:, ,

一,firecookie的安装

安装前先罗嗦一下session和cookie的区别

1,Cookie是由服务器端生成,发送客户端,浏览器会将Cookie的key/value保存到某个目录下的文本文件内,下次请求同一网站时就发送该Cookie给服务器。这些操作的前提是流览器没有禁止cookie

2, Session 是以文本文件形式存储在服务器端的某个路径下,通过phpinfo可以看到。在服务器端的 Session 文件,PHP 自动修改session 文件的权限。

firecookie根firebug安装一样,firecookie可以管理本地的cookie,查看,删除,拒绝等等。

firecookie

firecookie

二,yslow的安装

首先说明一下,yslow只能装在firefox下面,并且你还要装上firebug,他是一个网页的评测工具,查一查你的网页加载速度快不快啊,js,css是否合理啊。然后给一个总分评价

页面评测

页面评测

google的就是快,A级最好的一级了。哈哈。

1,Make fewer HTTP requests                       尽量减少http请求
2,Use a Content Delivery Network(cdn) 使用CDN网络,将页面中的静态资源分布到离用户最近的网络节点上
3,Add Expires headers                                  添加过期头
4,Compress components with gzip        用gzip压缩组件
5,Put CSS at top                                               把css放到头部
6,Put JavaScript at bottom                        把js放到底部
7,Avoid CSS expressions                           避免CSS的表达式
8,Make JavaScript and CSS external     使js和css的外部独立文件
9,Reduce DNS lookups                                减少DNS查找
10,Minify JavaScript and CSS                  给js和css 瘦身
11,Avoid URL redirects                               避免网址重定向
12,Remove duplicate JavaScript and CSS        删除重复的JavaScript和CSS         
13,Configure entity tags (ETags)               配置实体标签
14,Make AJAX cacheable                            ajax数据要缓存
15,Use GET for AJAX requests                  异步请求时,传参数用get
16,Reduce the number of DOM elements     减少DOM元素数量
17,Avoid HTTP 404 (Not Found) error      避免的HTTP 404(未找到)错误
18,Reduce cookie size                                  减少Cookie的大小
19,Use cookie-free domains                
20,Avoid AlphaImageLoader filter     避免 AlphaImageLoader筛选器
21,Do not scale images in HTML            不要html中进行图片操作
22,Make favicon small and cacheable    建立一些小图片,并缓存



转载请注明
作者:海底苍鹰
地址:http://blog.51yip.com/other/733.html