我目前正在为我的域 www.exampledomain.com 使用bluehost注册商。我使用bluehost C-panel创建了一个子域重定向,以创建一个子域 shop.exampledomain.com ,重定向到 exampledomain.myshopify.com
我希望子域的url屏蔽shopify域的url。因此,如果您从根点击商店,它将重定向到子域 shop.exampledomain.com 并为每个屏蔽 exampledomain.myshopify.com 重新写入此内容。 EM>
我之前使用过godaddy并且他们提供了这样做的功能,但是我无法将其转移到电子邮件设置中。 Bluehost表示他们不提供此功能,但他们确实提供.htaccess apache和php。如果有人能提供帮助,我会非常感激。
答案 0 :(得分:1)
首先不要重定向。只需创建子域shop.example.com
并在其根目录下放置一个htaccess文件,其中包含以下代码:
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ http://exampledomain.shopify.com/$1 [NC, L]