Google PageSpeed Insights点数アップのため、
コンテンツに有効期限を設定していたところ、拡張子jpgファイルの有効期限だけ何故か
設定されなかったので、原因と正しい記述を記載します。

version拠らないと思いますが、 apache version以下になります。

httpd -v
-------------------------------------
Server version: Apache/2.2.15 (Unix)
Server built:   Jul 18 2016 15:24:00
-------------------------------------


原因

MIMEタイプ の記述を間違えていました。

<IfModule expires_module>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 months"
</IfModule>


正しい記述

MIMEタイプはimage/jpeg正しいです。

<IfModule expires_module>
ExpiresActive On
ExpiresByType image/jpeg "access plus 1 months"
</IfModule>

以上です。

コメント