i have 3 pages doctor.php , nurse.php , wardboy.php
currently the profile pages are like :
- /doctor.php?d=123
- /nurse.php?n=456
- /wardboy.php?w=789
what i am trying to get is all profiles on same page like -- /profile/123.php , /profile/456.php , /profile/789.php
I am using:
RewriteRule ^profile/([^/]*)\.php$ /doctor.php?d=$1 [L]
RewriteRule ^profile/([^/]*)\.php$ /nurse.php?n=$1 [L]
RewriteRule ^profile/([^/]*)\.php$ /wardboy.php?w=$1 [L]
only the first rule is working.