# Rewrite user URLs
# Input: user/NAME/
# Output: user.php?id=NAME
RewriteRule ^user/(\w+)/?$ user.php?id=$1
| Incoming | Match | Capture | Outgoing | Result |
|---|---|---|---|---|
| user.php?id=joe | No | user.php?id=joe | Normal | |
| user/joe | Yes | joe | user.php?id=joe | Good |
| user/joe/ | Yes | joe | user.php?id=joe | Good |
| user/joe/x | No | user/joe/x | Fail |