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

Untitled

By: a guest on Jul 18th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 7  |  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. Struggling With Mod_Rewrite And Rewriting URL's
  2. http://www.example.com/$pageID/$page_title.html
  3.        
  4. RewriteCond %{THE_REQUEST} ^(GET|POST) /page.php?id=([0-9]+)
  5. RewriteRule ^ /page/%1/ [R=301]
  6.        
  7. RewriteRule ^page/([0-9]+)/$ /page.php?id=$1 [L,QSA]