February 2018
Beginner to intermediate
348 pages
9h 40m
English
Most dynamic websites that allow visitors to register, offer a profile view page. URLs of this form can be employed, containing both the user ID and the username:
|
Input URI |
http://website.com/user/31/James |
|
Rewritten URI |
http://website.com/user.php?id=31&name=James |
|
Rewrite rule |
rewrite ^/user/([0-9]+)/(.+)$ /user.php?id=$1&name=$2?; |
Read now
Unlock full access