linux下Apache添加域名绑定网站
Linux下apache基于域名的虚拟主机配置的详细步骤:
虚拟主机文件 yonghappy
1、首先在 /etc/apache2/sites-available 目录下新建一个空的虚拟主机文件yonghappy
cd /etc/apache2/sites-available touch yonghappy
2、退出返回到apache2目录,在sites-enabled下创建myweb的软连接
cd /etc/apache2/sites-enabled ln -f -s ../sites-available/yonghappy yonghappy
3、用vi打开myweb,进行配置如下:
<VirtualHost *:80> ServerAdmin webmaster@localhost ServerName yonghappy.com ServerAlias www.yonghappy.com DocumentRoot /var/www/yonghappy <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/yonghappy/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
其中:
ServerName www.yonghappy.com 绑定的网站域名
ServerAlias yonghappy.com 绑定的网站别名(您如果有多个域名添加在这里)
DirectoryIndex index.html index.php index.htm 设置默认首页
DocumentRoot /var/www/test 和 Directory “/var/www/test” 都是指定网站的目录,需要一致。
按“esc”退出编辑模式,输入“:wq”保存退出。
4、执行a2ensite myweb 使虚拟主机生效,若要失效则为 a2dissite myweb
a2ensite myweb
5、用restart重启或reload重载apache
/etc/init.d/apache2 reload