Skip to content

Instantly share code, notes, and snippets.

@umidjons
Created August 1, 2014 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save umidjons/dda81094abf049107b96 to your computer and use it in GitHub Desktop.
Save umidjons/dda81094abf049107b96 to your computer and use it in GitHub Desktop.
Ignore favicon.ico via mod_rewrite

Ignore favicon.ico via mod_rewrite

Do not forward request to index.php if it is favicon.ico request:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond ^(/?.+)$ !^favicon\.ico
RewriteRule . index.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment