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

Untitled

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 15  |  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. .htaccess Redict URLs without File Extensions
  2. RewriteEngine on
  3. RewriteRule !.(js|gif|css|jpg|png|ico|txt|html)$ index.php [L]
  4.        
  5. RewriteEngine On
  6. RewriteBase /
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9. RewriteRule . /index.php [L]
  10.        
  11. RewriteEngine On
  12. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
  13. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
  14. RewriteRule . /index.php [L]