Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save poloey/ff785fb0cbcc15c0719aaab59f0adffe to your computer and use it in GitHub Desktop.
Save poloey/ff785fb0cbcc15c0719aaab59f0adffe to your computer and use it in GitHub Desktop.
rewrite htaccess for rewrite all request except media file
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Redirect requests to index.php
RewriteCond %{REQUEST_URI} !=/index.php
RewriteCond %{REQUEST_URI} !.*\.png$ [NC]
RewriteCond %{REQUEST_URI} !.*\.jpg$ [NC]
RewriteCond %{REQUEST_URI} !.*\.css$ [NC]
RewriteCond %{REQUEST_URI} !.*\.gif$ [NC]
RewriteCond %{REQUEST_URI} !.*\.js$ [NC]
RewriteRule .* /index.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment