2013-05-31 2 views
0

디렉토리의 모든 페이지에서 인덱스 페이지로 리디렉션하고 싶습니다. 잘못된 주소도 있습니다.htaccess 디렉토리의 모든 페이지를 인덱스 페이지로 리디렉션하는 방법

http://site.com/directory/anyword move to http://site.com/directory/index.html 

나는 .htaccess RedirectMatch 301 /directory /directory/index.html

에서했던 그러나 나는/디렉토리를 제외하고 필요 ThankYou.html과

그것은 리디렉션하지만 열린 index.html을하지 않습니다 않습니다

- 내가 시도 할 수 있음 resulted in too many redirects

을 with 404.

답변

0

일치 항목에서 index.html을 제외해야합니다. 그렇지 않으면 디렉토리/index.html이 자신에게 리디렉션되는 무한 루프가 발생합니다. o ver. 이상.

불행히도 .htaccess 파일을 작성하는 지식은 기본적으로 존재하지 않으므로 예제를 제공 할 수 없습니다.

0

Mod 재 작성?

RewriteEngine On 
RewriteCond %{REQUEST_URI} !index\.html$ 
RewriteRule /directory/.+ /directory/index.html 
+0

아니요. 잘못된 주소 (디렉토리/ddkdfjskdjsdkdj)를 열면 404 페이지가 열립니다. – Dobrozhelatel

관련 문제