silverstripe-australia/developer-exercise/master/.htaccess - Htaccess File

silverstripe-australia/developer-exercise/master/.htaccess

<IfModule mod_rewrite.c>
  SetEnv HTTP_MOD_REWRITE On
  RewriteEngine On
  
  RewriteCond %{REQUEST_URI} ^(.*)$
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule .* index.php?url=%1&%{QUERY_STRING} [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
QUERY_STRING, REQUEST_FILENAME, REQUEST_URI

Comments

Apache