2014-03-27 4 views
0

htaccess에 대한 많은 주제를 검색하지만 여전히 성공하지 못했습니다.htaccess - 쿼리 문자열 리디렉션 및 제거

http://domain.com/download.php?q=filename1 
http://domain.com/download.php?q=filename2 

그것은 자동으로 리디렉션됩니다 : 사람 유형 주소 때

내가 원하는

http://domain.com/download/filename1.html 
http://domain.com/download/filename2.html 

어떻게이 문제를 해결할 수 있습니까?

답변

0

이 시도 :

RewriteEngine On 
RewriteBase/

RewriteCond %{QUERY_STRING} ^q=(.+)$ [NC] 
RewriteRule ^download\.php download/%1.html? [R=301,L] 
관련 문제