Clempops/edeli/master/web/.htaccess - Htaccess File

Clempops/edeli/master/web/.htaccess

Options +FollowSymLinks +ExecCGI
 
<IfModule mod_rewrite.c>
  RewriteEngine On
 
  #AddType x-mapp-php5 .php
  #AddHandler x-mapp-php5 .php
 
  # UNCOMMENT the following line, if you are having trouble getting no_script_name to work
  RewriteBase /

  # we skip all files with .something
  RewriteCond %{REQUEST_URI} ..+$
  RewriteCond %{REQUEST_URI} !.html$
  RewriteRule .* - [L]
 
  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
 
# big crash from our front web controller
ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"

On Github License

Files

Download PDF of Htaccess file
REQUEST_URI

Comments

Apache