Hi,
I have member.php file and I am passing query string guid to it to look like this:
http://localhost/mywebsite/member.php?guid=abc123
I want to make it friendly using RewiteRule to show like this:
http://localhost/mywebsite/member/abc123
i tried this in the htaccess but it's not working and I am getting Error 404.
RewriteRule ^member/([a-zA-Z0-9_-]+)/([0-9]+)/?$ member.php?guid=$1
Could you please help...
Thanks
Jassim