Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 24th, 2012  |  syntax: None  |  size: 0.40 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Apache directory redirect and htaccess directory qsa
  2. Options +FollowSymLinks +MultiViews -Indexes
  3.  
  4. <IfModule mod_rewrite.c>
  5. RewriteEngine on
  6.  
  7. RewriteBase /
  8.  
  9. RewriteRule ^styles/[d]{10}/(.*).(css|jpg|gif)$ styles/$1.$2 [NC,L]
  10. RewriteRule ^scripts/[d]{10}/(.*).(js|jpg|gif)$ scripts/$1.$2 [NC,L]
  11.  
  12. RewriteRule .(css|jpe?g|png|gif|js|ico)$ - [L]
  13. RewriteRule ^(.+)$ default.php?page=$1 [QSA,L,NC]
  14.  
  15. </IfModule>