<Files "htaccess_example">
    order allow,deny
    deny from all
</Files>

# Don't listing directory
Options -Indexes

# Follow symbolic links
Options +FollowSymLinks

# Default handler
DirectoryIndex index.php

# Turn on expiry
<IfModule mod_expires.c>
	ExpiresActive On
	ExpiresDefault "access plus 10 years"
</IfModule>

<IfModule mod_php5.c>
    # magic quotes off
    php_flag magic_quotes_gpc Off
    # default memory limit to 64Mb
    php_value memory_limit 1500M
    # to make sure register global is off
    php_value register_globals 0
    # max post size to 8Mb
    php_value post_max_size 8388608
    # upload size limit to 5Mb  
    php_value upload_max_filesize 5242880
    # hide errors, enable only if debug enabled
    php_value display_errors 0
</IfModule>

# Turn on mod_gzip if available
<IfModule mod_gzip.c>
	mod_gzip_on yes
    mod_gzip_dechunk yes
    mod_gzip_keep_workfiles No
    mod_gzip_minimum_file_size 1000
    mod_gzip_maximum_file_size 1000000
    mod_gzip_maximum_inmem_size 1000000
    mod_gzip_item_include mime ^text/.* 
    mod_gzip_item_include mime ^application/javascript$
    mod_gzip_item_include mime ^application/x-javascript$
    # Exclude old browsers and images since IE has trouble with this
    mod_gzip_item_exclude reqheader "User-Agent: .*Mozilla/4\..*\["
    mod_gzip_item_exclude mime ^image/.*
</IfModule>

## Apache2 deflate support if available
##
## Important note: mod_headers is required for correct functioning across proxies.
##
<IfModule mod_deflate.c>
	AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript
	BrowserMatch ^Mozilla/4 gzip-only-text/html
	BrowserMatch ^Mozilla/4\.[0678] no-gzip
	BrowserMatch \bMSIE !no-gzip

<IfModule mod_headers.c>	
	Header append Vary User-Agent env=!dont-vary
</IfModule>	
	
	# The following is to disable compression for actions. The reason being is that these
	# may offer direct downloads which (since the initial request comes in as text/html and headers
	# get changed in the script) get double compressed and become unusable when downloaded by IE.
	SetEnvIfNoCase Request_URI action\/* no-gzip dont-vary
	SetEnvIfNoCase Request_URI actions\/* no-gzip dont-vary
	
</IfModule>

# Configure ETags
<FilesMatch "\.(jpg|jpeg|gif|png|mp3|flv|mov|avi|3pg|html|htm|swf)$">
	FileETag MTime Size
</FilesMatch>

<IfModule mod_rewrite.c>

RewriteEngine on

# If Dippler is in a subdirectory on your site, you might need to add a RewriteBase line
# containing the path from your site root to Dippler's root. e.g. If your site is
# http://example.com/ and Dippler is in http://example.com/sites/dippler/, you might need 
#
#RewriteBase /sites/teke/
#
# here, only without the # in front.
#
# If you're not running Dippler in a subdirectory on your site, but still getting lots
# of 404 errors beyond the front page, you could instead try:
#
#RewriteBase /
#RewriteBase /teke/

RewriteRule ^user\/(.*)$ ?handler=user&page=$1&%{QUERY_STRING}
RewriteRule ^user$ ?handler&%{QUERY_STRING}

RewriteRule ^examinees\/(.*)$ ?handler=examinees&page=$1&%{QUERY_STRING}
RewriteRule ^examinees$ ?handler&%{QUERY_STRING}

RewriteRule ^group\/(.*)$ ?handler=group&page=$1&%{QUERY_STRING}
RewriteRule ^group$ ?handler&%{QUERY_STRING}

RewriteRule ^library\/(.*)$ ?handler=library&page=$1&%{QUERY_STRING}
RewriteRule ^library$ ?handler&%{QUERY_STRING}

RewriteRule ^tests\/(.*)$ ?handler=tests&page=$1&%{QUERY_STRING}
RewriteRule ^tests$ ?handler&%{QUERY_STRING}

RewriteRule ^test\/(.*)$ ?handler=test&page=$1&%{QUERY_STRING}
RewriteRule ^test$ ?handler=test&%{QUERY_STRING}

RewriteRule ^profile\/(.*)$ ?handler=profile&page=$1&%{QUERY_STRING}
RewriteRule ^profile$ ?handler&%{QUERY_STRING}

RewriteRule ^administrate\/(.*)$ ?handler=administrate&page=$1&%{QUERY_STRING}
RewriteRule ^administrate$ ?handler&%{QUERY_STRING}

RewriteRule ^users\/(.*)$ ?handler=users&page=$1&%{QUERY_STRING}
RewriteRule ^users$ ?handler&%{QUERY_STRING}

RewriteRule ^items\/(.*)$ ?handler=items&page=$1&%{QUERY_STRING}
RewriteRule ^items$ ?handler&%{QUERY_STRING}

RewriteRule ^assessments\/(.*)$ ?handler=assessments&page=$1&%{QUERY_STRING}
RewriteRule ^assessments$ ?handler&%{QUERY_STRING}

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ?page=$1&%{QUERY_STRING}

</IfModule>