• 1
  • 2
  • 3
  • 4
  • 5
阿里云主机ECS 首 页  »  帮助中心  »  云服务器  »  阿里云主机ECS
ECS Linux服务器配置网站及绑定域名的具体操作
发布日期:2015-12-28 10:12:33

  使用一键安装包配置的apache环境,添加网站配置的方法,如下所示:

  1、进入网站的配置文件目录

  命令:cd /alidata/server/httpd/conf/vhosts/

  2、创建一个新的配置文件

  命令:vi aa.conf

  3、按键盘上的字母 “i” ,开始编辑文件,将下面的内容复制过去。

  Order allow,deny

  Deny from all

  DocumentRoot /alidata/www/test

  ServerName www.test.com

  ServerAlias test.com

  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/test-error.log"

  CustomLog "/alidata/log/httpd/test.log" common

  对应自己的

  DocumentRoot /alidata/www/test 和 Directory "/alidata/www/test" 和 DirectoryMatch "/alidata/www/test/都是指定网站的目录,需要一致。

  DirectoryIndex index.html index.php index.htm 设置默认首页

  ErrorLog "/alidata/log/httpd/test-error.log" 和 CustomLog "/alidata/log/httpd/test.log" 对应的日志名字也需要自己修改一下,可以区分网站的日志信息。

  ServerAlias test.com 绑定的网站别名(您如果有多个域名添加在这里)没有的话,这个可以删除。

  ServerName www.test.com 绑定的网站域名

  4.重启apache测试

  命令:/alidata/server/httpd/bin/apachectl restart