2016-08-30 5 views
0

olddomain.com/path/file(s).pdf에는 pdfs가 포함 된 수백 개의 파일이 들어 있습니다. 고유 한 이름.olddomain.com (경로 및 파일 .pdf) - newdomain.com (경로 및 파일 .pdf)

우리는 newdomain.com을 보유하고 있으며 경로는 동일하며 사용자가 olddomain.com/path/file.pdf를 입력하는 경우를 제외하고 파일은 newdomain.com/path로 자동 전송됩니다. /file.pdf

다시 말하지만 파일 이름과 경로는 동일하며 도메인 이름 부분을 리디렉션하는 방법이 필요합니다.

답변

0

이 규칙을 사용해보세요.

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME}.pdf -f 
RewriteRule ^path/(.*) http://www.newdomain.com/path/$1.pdf [R]