2012-05-24 57 views
0

請幫助我使用htaccess。我試圖創建一個規則,將訪問特定網頁的用戶自動重定向到網站上的另一個頁面,但如果我訪問該網頁,則此規則對我無效(對於特定的IP地址)。.htaccess - 除我以外的所有用戶重定向

LiteSpeed安裝在服務器上,我認爲適合Apache的規則(如果我錯了,我只是不理解服務器軟件)。

對不起,英語不好。

回答

1

這是一個302-Moved Temporarily redirection

Options +FollowSymlinks 
RewriteEngine on 
RewriteCond %{REMOTE_HOST} !^xxx\.xxx\.xxx\.xxx 
RewriteRule \.html$ /anotherPage.html [R=302,L] 

其中xxx.xxx.xxx.xxx是您的ip,anotherPage.html是重定向頁面。

相關問題