我有一個.ne.ro域(在羅馬尼亞註冊的),遊客可以帶或不帶「WWW」請輸入:htaccess的,重定向虛擬子域網址參數
http://mydomain.ne.ro
http://www.mydomain.ne.ro
我想將http://123.mydomain.ne.ro
重定向到http://mydomain.ne.ro?id=123
。如果用'www | mail | ftp'輸入的訪問者必須被視爲非參數(顯然)。我試過htaccess subdomain redirct with last url parameter,但沒有奏效。
當前代碼:
# edited on 05/April/2011 as suggested:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.mydomain\.ne\.ro$
RewriteCond %{HTTP_HOST} ^(.*)\.mydomain\.ne\.ro$
RewriteRule ^$ /index.php?id=%1 [R,L]
託管在hostgator's business plan(Linux)的,註冊在nic.ro,只是如果問。
什麼是當前的重定向規則? – 2010-11-03 17:25:55
有人嗎?我是新手,並陷入這個問題。 – quantme 2010-11-04 02:10:53
你不需要任何重定向。所有請求**已經**登陸您的索引。 – 2010-12-09 06:20:10