livingdreams/kidcrossing/master/.htaccess - Htaccess File

livingdreams/kidcrossing/master/.htaccess

Options -Indexes

<IfModule mod_rewrite.c> 
  RewriteEngine on

  RewriteCond %{REQUEST_URI} !^public
  RewriteRule ^(.*)$ web/$1 [L] 
</IfModule>

# Deny accessing below extensions
<Files ~ "(.json|.lock|.git)">
  Order allow,deny
  Deny from all
</Files>

# Deny accessing dot files
RewriteRule (^.|/.) - [F]

On Github License

Files

Download PDF of Htaccess file
REQUEST_URI

Comments

Apache