htaccess ファイルの内容。画像、js、css などの静的コンテンツの有効期限を設定したい
RewriteEngine On
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
私の画像の場所は
www.sitename.com/css/css/css files
www.sitename.com/images/img/images
このような