阿里云如何添加多个网站 for Linux(绑定域名)

我们可以通过.htaccess文件来达到一个空间帮顶多个域名的效果,即域名1访问空间上webroot下的目录1(即二级目录),域名2访问空间上webroot下的目录2,等等。
二级目录名为fuli,需要绑定fuli.ticaozhixiang.com。
将下面代码添加到网站ticaozhixiang.com根目录的.htaccess文件中:

RewriteEngine on
# 把 fuli.ticaozhixiang.com 改为你要绑定的域名.
RewriteCond %{HTTP_HOST} ^(www.)?fuli.ticaozhixiang.com$
# 把 fuli改为要绑定的目录.
RewriteCond %{REQUEST_URI} !^/fuli/
# 不要改以下两行.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# 把 fuli改为要绑定的目录.
RewriteRule ^(.*)$ /fuli/$1
# 把 fuli.ticaozhixiang.com 改为你要绑定的域名
# 把 fuli 改为要绑定的目录.
# fuli/ 后面是首页文件index.php, index.html……
RewriteCond %{HTTP_HOST} ^(www.)?fuli.ticaozhixiang.com$
RewriteRule ^(/)?$ fuli/index.php

上面注释已经说的很明白了,按需修改就行。值得说明的是:如果需要绑定多个子目录,重复添加上面的语句即可!
然后分别进行子域名和空间的相互绑定即可.

==========================================================================

阿里云一台云主机不能绑定多个ip

【以下配置的路径以阿里云提供的标准环境路径为准,如果您另行安装,请根据实际安装路径配置】。
 
1.cd /alidata/server/httpd/conf/vhosts/ 进入绑定域名所在目录,
 
2.vim test.conf  建立一个配置文件,test可以自己命名;
 
3.点击字母“i”开始编辑文件,输入内容:
        DocumentRoot /alidata/www/phpwind
        ServerName localhost
        ServerAlias localhost
       
            Options -Indexes FollowSymLinks
            AllowOverride all
            Order allow,deny
            Allow from all
       
       
                RewriteEngine On
                RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
                RewriteRule ^(.*)/simple/([a-z0-9\_]+.html)$ $1/simple/index.php?$2
       
        ErrorLog "/alidata/log/httpd/phpwind-error.log"
        CustomLog "/alidata/log/httpd/access/phpwind.log" common
 
 
其中:
ServerName www.test.com 绑定的网站域名
ServerAlias test.com 绑定的网站别名(您如果有多个域名添加在这里)
DirectoryIndex index.html index.php index.htm 设置默认首页
DocumentRoot /alidata/www/test 和 Directory "/alidata/www/test" 都是指定网站的目录,需要一致。
 
按“esc”退出编辑模式,输入“:wq”保存退出。
 
4.输入命令:/alidata/server/httpd/bin/apachectl restart 重启apache测试。
 
5.测试网站。请在浏览器中输入域名,测试设置。
原文地址:https://www.cnblogs.com/welhzh/p/4695123.html