Skip to content

Instantly share code, notes, and snippets.

@stefanopulze
Created August 28, 2022 12:45
Show Gist options
  • Save stefanopulze/1632eb37a65051d42ceb5777aea2a494 to your computer and use it in GitHub Desktop.
Save stefanopulze/1632eb37a65051d42ceb5777aea2a494 to your computer and use it in GitHub Desktop.
Awesome htaccess

Redirect if file or directory not exists

Options +SymLinksIfOwnerMatch 
RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment