HostMonster host many domains bind to the same directory of methods, implementation of this method required ssh permissions, use under linux and are commonly used Linux commands, if you are a master linux, then you skip this article.
Example 1: The sub-domain 111.abc.com bound to www.abc.com directory
At the control panel to add the above-mentioned sub-domain 111.abc.com, will be automatically generated public_html directory 111 directory.通过ssh remote connection to the remote server, go to public_html directory
cd public_html
Delete directory 111
rm-rf 111
Create a soft link
ln-s .. / public_html 111
Example Two: The 111.abc.com and 222.abc.com bound to 111.abc.com directory
At the control panel to add the above two sub-domain at public_html directory will automatically generate both the directory 111 and 222. ssh remote connection to the remote server, go to public_html directory
cd public_html
Delete directory 222
rm-rf 222
Create a soft link
ln-s 111 222
Achieve
