#AddHandler application/x-httpd-php56 .php
# output ETags for static files
FileETag MTime Size
# set up expiration headers
# this section should be uncommented on server 1 and server 7
ExpiresActive On
ExpiresDefault "now plus 1 week"
SetOutputFilter DEFLATE
# Netscape 4.x has some problems
BrowserMatch ozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex wont work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
# Don't compress media
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|swf|mp3|mp4|flv)$ no-gzip dont-vary
# Don't compress zip files
SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary.
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
DirectoryIndex index.php
# BEGIN WordPress
RewriteEngine On
RewriteBase /fasoon.be/trunk/public_html/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /fasoon.be/trunk/public_html/index.php [L]
# END WordPress
ErrorDocument 403 "Forbidden"
ErrorDocument 404 "Not Found"
SetEnvIf User-Agent Insights is_a_google_insights
SetEnvIf Request_URI "/\.well-known" ssl_challenge_request
AuthUserFile /home/fasoonde/public_html/.htpasswd
AuthGroupFile /dev/null
AuthName "Password protected site"
AuthType Basic
Require valid-user
Satisfy any
Order allow,deny
Allow from env=is_a_google_insights
Allow from env=ssl_challenge_request
#used for debug
#Header always add x-ssl-challenge "%{ssl_challenge_request}e"