<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ index.php/$1 [L] 
	RewriteRule ^(.+).(d+).(js|css)$ $1.$3 [L]
	#RewriteCond %{HTTPS} !on
	#RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}	
</IfModule>
<IfModule mod_expires.c> 
  ExpiresActive On
  ExpiresDefault "access plus 1 seconds"
  ##ExpiresByType text/html "access plus 1 year"
  ExpiresByType image/x-icon "access plus 1 year"
  ##ExpiresByType image/gif "access plus 1 year"
  ##ExpiresByType image/jpeg "access plus 1 year"
  ##ExpiresByType image/png "access plus 1 year"
  ExpiresByType text/css "access plus 1 year"
  ExpiresByType text/javascript "access plus 1 year"
  ExpiresByType application/x-javascript "access plus 1 year"
</IfModule>
 

<FilesMatch "\.(?i:gif|jpe?g|png|ico|css|js|swf|ttf|woff)$">
  <IfModule mod_headers.c>
	Header set Expires "Thu, 15 Apr 2020 20:00:00 GMT"
	Header set Cache-Control "max-age=31536000, public"
  </IfModule>

</FilesMatch>

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “alt-php56” package as the default “PHP” programming language.
<IfModule mime_module>
  AddHandler application/x-httpd-alt-php56 .php .php5 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
