Apache Mod-rewrite -
this gives "no record found"
###get members pagename rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$ /view_members_public_profile.php?page_name=$1 [l] shows member record http://localhost/view_members_public_profile.php?page_name=mabel
i want show members profile going http://localhost/mabel
any ideas?
thank you
try rewriterule ^/(.*) /view_members_public_profile.php?page_name=$1 [l]
Comments
Post a Comment