Skip to content

Instantly share code, notes, and snippets.

@vdonchev
Created March 22, 2021 17:19
Show Gist options
  • Save vdonchev/a34f5ca636d2e3389ef44095a4bb0d4f to your computer and use it in GitHub Desktop.
Save vdonchev/a34f5ca636d2e3389ef44095a4bb0d4f to your computer and use it in GitHub Desktop.
PHP Front Controller
Options -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [NC,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment