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]

然后在 Cpanel 的“子域”中创建*.mysite.com并在“文档根”中设置/public_html

现在,如何使用 htaccess 代码将域停放或重定向到这个动态子域?例如:将applestore123.com停放或重定向到apple.mysite.com

我有共享主机服务器。

4

1 回答 1

0

对于 applestore123.com 到 apple.mywebsite,您必须更改您的 htaccess 规则,例如:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^applestore123.com$ [NC]
RewriteRule (.*) apple.mysite.com$ [QSA,R=301,L]
于 2013-03-31T14:43:41.603 回答