We have studentPage.php file which shows us Student's info
i want RewriteRule to make this:
example.com/students/John-3
form this:
example.com/studentPage.php?name=John&id=3
We have studentPage.php file which shows us Student's info
i want RewriteRule to make this:
example.com/students/John-3
form this:
example.com/studentPage.php?name=John&id=3
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule (students)/([0-9]+)-([a-zA-Z-]+)$ student.php?name=$3&id=$2