Krinnerion/shop/master/backend/web/.htaccess - Htaccess File

Krinnerion/shop/master/backend/web/.htaccess

# Mod_Autoindex
<IfModule mod_autoindex.c>
  # Disable directories browsing:
  Options -Indexes
</IfModule>

# Mod_Rewrite
<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  # Turn on mod_rewrite:
  RewriteEngine On

  # If it is a folder or a file then open it:
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d

  # If not - redirect to index.php:
  RewriteRule . index.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache