我在 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
我有共享主机服务器。