2011-02-23 10 views
0

아파치 유행의 재 작성

###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 

내가 회원 http://localhost/mabel

어떤 아이디어가 이동하여 프로필을 보여주고 싶다 "어떤 레코드를 찾을 수 없습니다"?

+0

당신이 그것을 * * 무엇을하고 있는지 확인하기 위해 귀찮게하려고 감사? –

+0

예. "기록을 찾을 수 없습니다". –

+0

그건 * *하고있는 것이 아닙니다. * 결과 *입니다. –

답변

0

RewriteRule ^/(.*) /view_members_public_profile.php?page_name=$1 [L]

+0

작동하지 않음 - http : //localhost/mabel.php –