eteran/lucent/master/public/.htaccess - Htaccess File

eteran/lucent/master/public/.htaccess

<IfModule mod_rewrite.c>
  <IfModule mod_negotiation.c>
    Options -MultiViews
  </IfModule>

  RewriteEngine on
  RewriteBase /

  # make sure these are past along, even when in the presense of Fast-CGI
  RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
  RewriteRule .* - [E=HTTP_CONTENT_TYPE:%{HTTP:Content-Type}]

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
CONTENT_TYPE, REQUEST_FILENAME

Comments

Apache