<IfModule mod_rewrite.c>
  RewriteEngine On

  # If your site is inside a subfolder, set RewriteBase, e.g. /token/
  # RewriteBase /

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^ index.php [L]
</IfModule>
