Skip to content

Instantly share code, notes, and snippets.

@pixelbrackets
Last active September 2, 2020 09:42
Show Gist options
  • Save pixelbrackets/8ba866dcb207b461f0ed0bc5af45927b to your computer and use it in GitHub Desktop.
Save pixelbrackets/8ba866dcb207b461f0ed0bc5af45927b to your computer and use it in GitHub Desktop.
Route all requests to index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
location / {
try_files $uri $uri/ /index.php?$args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment