相信有很多做网站的朋友都在为自己的主机,VPS而头疼,总是会觉得速度慢,但是想要速度快的话又得花费过大,怎么样才能让网站速度快,又经济呢。今天这里分享一下在Apche下通用的一些加速技巧,IIS7的请绕道。
一、缓存一下不常修改的文件
在.htaccess文件中添加以下语句:
其中:text/css之类代表文件类型,A2592000表示在浏览器中的缓存时间,2592000秒=30天
记得谷歌有个网站速度评级,在其中对浏览器的缓存时间也是其中一项,很多人不知道怎么做,下面的就是Apahce下的做法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault A600
ExpiresByType
image /x-icon A2592000
ExpiresByType application /x-javascript
A2592000
ExpiresByType text /css A604800
ExpiresByType image /gif
A2592000
ExpiresByType image /png A2592000
ExpiresByType image /jpeg
A2592000
ExpiresByType text /plain A86400
ExpiresByType
application /x-shockwave-flash A2592000
ExpiresByType video /x-flv
A2592000
ExpiresByType application /pdf A2592000
ExpiresByType text /html
A600
< /IfModule >
|
二、开启Gzip压缩
这个是节省流量和提高速度所必须的。在.htaccess文件中添加以下语句:
1
2
3
4
|
<ifmodule mod_deflate.c>
AddOutputFilter
DEFLATE html xml php js css
< /ifmodule >
|
三、关闭ETag
如果没有使用ETag提供的灵活的验证模式,那么把所有的ETag都去掉会更好,只需在.htaccess文件中添加以下语句:
1
2
|
FileETag
none
|