在我的域lapagept.com上,我創建了一個子域sm.lapagept.com。如何將一個子域名重定向到一個IP地址欄中保留子域名?
當用戶在其瀏覽器的地址欄中輸入http://sm.lapagept.com時,他被重定向到http://173.209.38.131/~sm。地址欄中的新地址更改爲http://173.209.38.131/~sm。
這是我們在.htaccess文件中使用的lapagept.com的代碼,使這個:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^sm\.lapagept\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.sm\.lapagept\.com$
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^/?$ "http\:\/\/173\.209\.38\.131\/\~sm" [R=301,L]
我的問題:
當用戶進入他的瀏覽器地址欄中http://sm.lapagept.com,將它有可能被重定向到http://173.209.38.131/~sm,但保留http://sm.lapagept.com在他的地址欄?
此IP地址是否代表完全不同的服務器? – MrWhite