2013-06-18 75 views
0

對於我們的多視圖,我們希望在開發過程中將其中一個域重定向到index.html頁面。我通常知道你能做的重寫規則在您.htacces到index.html,然後你可以在非WWW重定向到一個WWW與:重定向到多商店中的index.html

RewriteEngine On 
Rewritecond %{http_host} ^domain.com [NC] 
RewriteRule ^(.*) http://www.domain.com/$1 [R=301,L] 

我們已經做了index.html頁面和現場網店已經啓動並運行第二個域(所以不同的URL)我們要像一個規則:

RewriteEngine On 
Rewritecond %{http_host} ^www.domain.com [NC] 
RewriteRule ^(.*) http://www.domain.com/index.html$1 [R=301,L] 

如果我們上面我們結束了一個域看起來像代碼:http://www.domain.com/index.htmlindex.php

希望有人能夠幫助

回答

1

將您的第二條規則更改爲:

Options +FollowSymLinks -MultiViews 
RewriteEngine On 
RewriteBase/

Rewritecond %{HTTP_HOST} ^www\.domain\.com$ [NC] 
RewriteRule ^$ http://www.domain.com/index.html [R=301,L] 
+0

謝謝Anubhave,那個人工作! – Coen

+0

不客氣,很高興它解決了。 – anubhava