2012-02-14 4 views

답변

3

사이트의 루트 디렉토리에있는 .htaccess 파일에 다음을 추가해보세요.

RewriteEngine on 
RewriteBase/

$if the URL ends with id=111 
RewriteCond %{THE_REQUEST} id=111\ [NC] 
#then rewrite the request to pages 
RewriteRule^pages [L] 

당신은 다음을 포함 위의 마지막 규칙을 변경 www.mysite.com/pages에 사용자의 주소 표시 줄에 URL을 변경하려는 경우 R=301

#then redirect the request to pages 
RewriteRule^pages? [L,R=301] 
아래로
관련 문제