Htaccess File

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

QUERY_STRING, REQUEST_FILENAME, REQUEST_URI
<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>
Exit mobile version