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

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.42 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. .htaccess, Rewriting ALL PHP Vars to folders
  2. Options +FollowSymLinks
  3. RewriteEngine on
  4. RewriteRule (.*)/(.*)/$ index.php?language=$1&section=$2
  5. RewriteRule (.*)/(.*)/(.*)/$ index.php?language=$1&section=$2&item=$3
  6.        
  7. Options +FollowSymLinks
  8. RewriteEngine on
  9. RewriteBase /
  10.  
  11. RewriteRule ^([a-zA-Z]{2})/(w+)/$ index.php?language=$1&section=$2 [L]
  12. RewriteRule ^([a-zA-Z]{2})/(w+)/(d+)/$ index.php?language=$1&section=$2&item=$3 [L]