duaiwe/sliMVC/master/public/.htaccess - Htaccess File

duaiwe/sliMVC/master/public/.htaccess

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
  RewriteEngine On
  # no, so we redirect to our front web controller

  # Don't redirect this request if it's a file/dir path that actually exists.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  
  
  RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache