2013-02-24 135 views
2

我在mysite.com有商店,在這個網站上,有一些商店,如蘋果和...。 用戶可以查看該商店的虛擬子域像http://apple.mysite.com如何將域名重定向到動態子域名?

因此,我創建的根文件管理器的.htaccess:

RewriteEngine on 
RewriteCond %{HTTP_HOST} !^www\.mysite.com$ 
RewriteCond %{HTTP_HOST} ^(.*)\.mysite.com$ 
RewriteRule ^$ /stores.php?id_store=%1 [P,L] 

然後在「子域」中的交友創建* .mysite.com和在「文檔根」集/public_html

現在,我怎麼能停放或重定向域到這個動態子域與htaccess的代碼? 例如: 公園或重定向applestore123.comapple.mysite.com

我已經共享主機服務器。

+0

請幫助我如何解決這個問題? :■ – mghhgm 2013-02-25 10:45:18

回答

0

對於applestore123.com到apple.mywebsite你必須改變你的一樣htaccess的規則:

RewriteEngine on 
RewriteCond %{HTTP_HOST} ^applestore123.com$ [NC] 
RewriteRule (.*) apple.mysite.com$ [QSA,R=301,L] 
相關問題