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]
But this shows member record
http://localhost/view_members_public_profile.php?page_name=mabel
I want to show members profile by going to http://localh开发者_Python百科ost/mabel
Any ideas?
Thank you
try RewriteRule ^/(.*) /view_members_public_profile.php?page_name=$1 [L]
精彩评论