2014-03-23 17:16:01
来 源
kejihao
Apache
本文介绍Apache服务器虚拟主机站点vhost配置实例演示,希望对于初学Apache服务器相关的朋友有帮助,更多Apache安装、配置、报错处理等资源请本站内搜索。
不记得自己之前是不是已经记录过了,反正是没有存到大脑里,每次需要配置apache虚拟主机的时候,还是要查找,为啥没有那过目不忘的本领呢?~~

俗话说,好记性不如烂笔头,那么好吧,就再记一次,便于以后查阅。

这里只是一个简单的配置样例。

关于apache的更多配置请自行查阅。

apache虚拟主机vhost配置样例如下:

<virtualhost 127.0.0.1:80>

  ServerName www.server110.com

  ServerAlias www.server110.com

  DirectoryIndex index.html index.php

  DocumentRoot "D:some-directory"

  <directory "D:some-directory">

Allow from all

Options Indexes FollowSymLinks

AllowOverride all

  </directory>

  #子目录

  Alias /sub "D:another-directory"

  <directory "D:another-directory">

Allow from all

  </directory>

  #反向代理,如配置solr指向另外一台服务器

  ProxyPass /solr http://www.other.com/solr

  ProxyPassReverse /solr http://www.other.com/solr

  ErrorLog "logs/error.log"

  CustomLog "logs/access.log" common

</virtualhost>

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。