2012-10-17 5 views
1

꽤 URL이 같은 어느 하나의 규칙을 기록 할 수 있도록 htaccess로 :리디렉션 난 그냥 .htaccess로 매우 새로운 오전

:

http://www.example.com/profile.php?username=John.janorkar

것은 뭔가 같이 원하십니까 코드가 잘 작동입니다 아래 http://www.example.com/profile/John.janorkar

는 나는 또한 다음과 같이 WWW에 www를 리디렉션 할

은 (바로 위의 하나에 문제가있다.

RewriteCond %{HTTP_HOST} ^example\.com$ [NC] 
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301] 

전문가가 도와 드릴 수 있습니까?

답변

1

그냥 htaccess로이 규칙을 추가 :

RewriteRule ^profile/(.+)/?$ profile.php?username=$1 [L,NC,QSA]