このサイトはBフレッツ回線と非力なサーバで構成されていますのでレスポンスが悪くてイライラされている方もいるのではと思います
改善の余地はあるのかなと思いつつ放置状態でしたが、時間ができたので少し調べてみました
Webのスピードテストができるサイト(これ以外にも多数存在します)
- PageSpeed Insights – Google Developers
- Pingdom Website Speed Test
- WebPagetest – Website Performance and Optimization Test
- GTmetrix | Website Speed and Performance Optimization
http://developers.google.com/speed/pagespeed/insights/
Webサイトのレスポンス速度の改善でネットを調べると沢山ありますが、基本的なところではブラウザキャッシュの有効期限の延長と圧縮転送のようです
色々なサイトを参考にさせて頂いて.htaccessに追加しました
- ブラウザキャッシュの有効期限
- 転送データの圧縮
1 2 3 4 5 6 7 8 9 10 |
<IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 seconds" ExpiresByType text/css "access plus 1 week" ExpiresByType image/gif "access plus 1 weeks" ExpiresByType image/jpeg "access plus 1 weeks" ExpiresByType image/png "access plus 1 weeks" ExpiresByType text/javascript "access plus 1 weeks" ExpiresByType application/x-javascript "access plus 1 weeks" </IfModule> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<IfModule mod_deflate.c> SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png|ico)$ no-gzip dont-vary SetEnvIfNoCase Request_URI _\.utxt$ no-gzip #DeflateCompressionLevel 4 AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/atom_xml AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/x-httpd-php </IfModule> |
この他にもETageや“Serve static content from a cookieless domain”もあるようですが、よく分かってないです
cookieless domainに至っては日本語サイトが全く無いですね。探し方が悪いのか…
取り敢えずは少し改善したようです