Advertisement
Guest User

Untitled

a guest
Jun 27th, 2013
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. http://localhost/Test/index.php -> http://localhost/Test/home
  2. http://localhost/Test/index.php?do=main -> http://localhost/Test/main
  3. http://localhost/Test/index.php?do=profile&uid=1 -> http://localhost/Test/profile/1
  4.  
  5. RewriteRule ^/?index.php home/
  6. RewriteRule ^/?index.php?do=(w*) $1/
  7. RewriteRule ^/?index.php?do=(w*)&uid=(w*) $1/$2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement