long_term

htaccess redirect all

Jul 22nd, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Options +FollowSymLinks
  2. RewriteEngine On
  3. # Redirect requests to index.php
  4. RewriteCond %{REQUEST_URI} !=/index.php
  5. RewriteCond %{REQUEST_URI} !.*\.png$ [NC]
  6. RewriteCond %{REQUEST_URI} !.*\.jpg$ [NC]
  7. RewriteCond %{REQUEST_URI} !.*\.css$ [NC]
  8. RewriteCond %{REQUEST_URI} !.*\.gif$ [NC]
  9. RewriteCond %{REQUEST_URI} !.*\.js$ [NC]
  10. RewriteRule .* /index.php
Advertisement
Add Comment
Please, Sign In to add comment