BlueHost将主域名(primary domain)绑定到子目录(subfolder)

3,485 人次阅读
没有评论

共计 1882 个字符,预计需要花费 5 分钟才能阅读完成。

最近换到BlueHost,但是可恶的是,他们的主域名是放到第一级目录,其余域名才能绑定到子目录,很不方便,所以只能通过.htaccess方法修噶了。

Bluehost主机是无限空间,无限流量的,可以建多个站点。我们花了几百块买个空间,当然不会满足于只建一个网站的。但是我们知道Bluehost主机是有一个主域名指定到根目录public_html的,如果需要建其他站的话,就要在这个文件夹下面新建一个文件加,把网站文件放进去。这样的话,如果建的站多了,根目录下的文件夹未免会有些凌乱。如果能把主域名指定到子目录,和其他网站同一个级别,就方便管理了。

关于这个问题我专门咨询了Bluehost的客服,他们只说让我做301跳转,这个太不靠谱。后来在网上找了很久,终于找到了解决方法,尝试了几次之后,成功将主域名指定到了子目录。

这个方法其实就通过修改.htaccess来实现跳转。(查看.htaccess文件的方法)
1. 打开根目录下的.htaccess文件,将下面的代码复制进去(#开头的行可以不复制,只是注释内容)

    1. 将”example.com”替换成你的主域名。一共2处

    2. 将”subdirectory”替换成你的子目录名称。一共3处

    3. 将最后一行的”index.html”改成你的网站首页文件名,例如:index.php, index.htm, index.shtml等。

# Bluehost.com
# .htaccess main domain to subdirectory redirect
# Copy and paste the following code into the .htaccess file
# in the public_html folder of your hosting account
# make the changes to the file according to the instructions.
# Do not change this line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don’t change these line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change example.com to be your main domain again.
# Change ‘subdirectory’ to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ subdirectory/index.html [L]

2. 保存然后上传至根目录,把所有网站文件放到子目录里去。
注:根目录下不能有首页文件,不然会失败。

但是有人会问了,我在Bluehost主域名要安装Magento,而且是放在了子目录,安装的时候Magento不承认子目录,必须带着子目录的名字怎么办呢?

要在Bluehost中把Magento安装到子目录,但是使用主域名,怎么呢?

即,我的主域名为ctrol.cn,但是我想在public_html下新建一个ctrolcn的子文件夹作为Magento的安装目录,但是还要使用https://www.ctrol.cn来访问,应该怎么办呢?

别急,这里给出你解决方法。

1、正常安装到子目录下,及https://www.ctrol.cn/ctrolcn这样的地方

2、按照上述方法,在根目录建立.htacess文件

3、登陆Phpmyadmin,修改Magento对应数据库core_config_data中Base_url为你的域名即可。

4、清空缓存。

准备OK。
是不是很简单?!

正文完
 0