# Use PHP5.4 as default
# AddHandler application/x-httpd-php54 .php

#DirectoryIndex Under_Construction.html 

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

# Deny access to wp-config.php file
<Files wp-config.php>
order allow,deny
deny from all
</Files>

# Deny access to browser directories / Block directory browsing
# For security reasons, Option all cannot be overridden.
#Options All -Indexes
Options ExecCGI Includes IncludesNOEXEC SymLinksIfOwnerMatch -Indexes
# Set PHP handler to application/x-httpd-phpbeta on Tue Jan 12 10:59:16 MST 2016.
AddHandler application/x-httpd-phpbeta .php
