Facebook
From Baby Bat, 6 Years ago, written in Rebol.
Embed
Download Paste or View Raw
Hits: 257
  1. RewriteEngine On
  2.  
  3. RewriteRule ^xhr(.*)$ index.xhr.php/$1 [L]
  4. RewriteRule ^_xhr(.*)$ index._xhr.php/$1 [L]
  5.  
  6. #RewriteRule ^([a-z]{2})/(xhr|hdr|_xhr)/([0-9]{1,11})$ index.$2.php?lang=$1&islandId=$3 [L]
  7. RewriteRule ^([a-z]{2})/(xhr|hdr|_xhr)$ index.$2.php?lang=$1 [L]
  8.  
  9.  
  10. RewriteRule ^([a-z]{2})/(css|js|fonts|img)/(.*)$ /$2/$3 [L]
  11.  
  12. #RewriteRule ^([a-z]{2})/([a-zA-Z0-9_-]{1,20})/$ /index.php?lang=$1&page=$2 [L]
  13.  
  14. RewriteRule ^([0-9]{1,11})$ /index.php?islandId=$1 [L]
  15. RewriteRule ^([a-z]{2})/([0-9]{1,11})$ /index.php?lang=$1&islandId=$2 [L]
  16. RewriteRule ^([a-z]{2})/{0,1}$ /index.php?lang=$1 [L]
  17.  
  18.