Sha256: b12670f898a593927c1ebc5fcffe64c3e5e389969ea77f5e7b74879d812b012d

Contents?: true

Size: 834 Bytes

Versions: 22

Compression:

Stored size: 834 Bytes

Contents

Options +FollowSymLinks
FileETag All
ErrorDocument 404 /404

<IfModule mod_rewrite.c>
	RewriteEngine on

	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

# Compress all static assets
<IfModule mod_deflate.c>
	# compress content with type html, text, and css
  AddOutputFilterByType DEFLATE text/css text/html text/javascript application/javascript application/x-javascript text/js text/plain text/xml

	<IfModule mod_headers.c>
		# properly handle requests coming from behind proxies
		Header append Vary User-Agent
	</IfModule>
</IfModule>

# Cache, aggressively 
<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 2 years"

  # Do not cache dynamically generated pages.
  ExpiresByType text/html "access plus 10 minutes"
</IfModule>

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
bonsai-1.4.9 spec/support/public/.htaccess
bonsai-1.4.8 spec/support/public/.htaccess
bonsai-1.4.7 spec/support/public/.htaccess
bonsai-1.4.6 spec/support/public/.htaccess
bonsai-1.4.5 spec/support/public/.htaccess
bonsai-1.4.4 spec/support/public/.htaccess
bonsai-1.4.3 spec/support/public/.htaccess
bonsai-1.4.2 spec/support/public/.htaccess
bonsai-1.4.1 spec/support/public/.htaccess
bonsai-1.3.2 spec/support/public/.htaccess
bonsai-1.3.1 spec/support/public/.htaccess
bonsai-1.3.0 spec/support/public/.htaccess
bonsai-1.2.0 spec/support/public/.htaccess
bonsai-1.1.6 spec/support/public/.htaccess
bonsai-1.1.5 spec/support/public/.htaccess
bonsai-1.1.4 spec/support/public/.htaccess
bonsai-1.1.3 spec/support/public/.htaccess
bonsai-1.1.2 spec/support/public/.htaccess
bonsai-1.1.1 spec/support/public/.htaccess
bonsai-1.1.0 spec/support/public/.htaccess