2009-10-01 7 views
4

htaccess 리디렉션 설정에 문제가 있습니다.htaccess redirect

나는 다음과 같은 URL로 리디렉션 할 필요가

: 누군가가 도와 드릴까요

neemoil.com.au/shop/* 

neemoil.com.au/*

에 :

neemoil.com.au [OR] 
www.neemoil.com.au 

neemoil.com.au/shop에 나는 또한 리디렉션하려면?

답변

4

당신이 묻는 것은 클라이언트 루프를 영원히 만들 것입니다. 당신은 htaccess로 사용할 수 있습니다

neemoil.com.au/shop 
#would be redirected to 
neemoil.com.au/   
#which in turn would be redirected to 
neemoil.com.au/shop  
#and it would keep on looping... 
neemoil.com.au/ 
neemoil.com.au/shop 

은 다음과 같이 리디렉션 :

을이 파일 이름이 아니며 디렉토리 및 요청 URI가 가게 또는 지불 또는 등등 ... 당신의 주소로 리디렉션하는 경우 ...

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_URI} (shop|pay|secure|etc) 
RewriteRule ^(.*)$ www.neemoil.com.au [R=301,L]