jdrydn/Angelhack2012/master/public_html/.htaccess - Htaccess File

jdrydn/Angelhack2012/master/public_html/.htaccess

RewriteEngine on
  RewriteBase /
  
  # Stop any .* files from being accessed
  <Files .*>
    Order Deny,Allow
    Deny from all
  </Files>
  
  # Let existing files be accessed
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  
  # Else route all other URIs through the framework.
  RewriteRule .* index.php/$0 [PT]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache