2009-10-01 48 views
4

我在设置htaccess重定向时遇到了问题。Htaccess重定向

我需要重定向以下网址:

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

neemoil.com.au/shop

我也希望它重定向:

neemoil.com.au/shop/* 

neemoil.com.au/*

谁能帮助?

回答

4

你在问什么会让客户端永远循环。

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 

您可以使用htaccess的重定向这样的:

如果它不是一个文件名,也不是目录和请求URI是店支付或等..它重定向到您的地址?

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