黑客防线网安之windows下配置apache多站点发布技巧_WIN2003服务器维护_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

黑客防线网安之windows下配置apache多站点发布技巧

作者:黑客防线网安Apache教程网 来源:黑客防线网安Apache教程网 浏览次数:0

本篇关键词:Apachewindows
黑客防线网安网讯:在windows服务器上面配置Apache多个PHP网站,前提是已经在windows系统下安装了php运行环境。
服务器上面配置Apache多个网站
测试IP:192.168.1.2 (其他IP自己改)
网站根目录:D:/webroot/
网站根目录下的三个网站文件夹名:web001web002web003
测试主页:index.html 里面的内容自己写,最好内容不同,以测试可以看到
我在本机测试,假设我有三个域名,www.*****01.com,www.*****02.com,www.*****03.com
在测试之后,我要改一下系统文件:C:/WINDOWS/system32/drivers/etc下hosts文件
原来是:
192.168.1.2 localhost
再加三行:
192.168.1.2 localhost
192.168.1.2 www.*****01.com
192.168.1.2 www.*****02.com
192.168.1.2 www.*****03.com
上面这样,就可以让三个域名的IP指向到192.168.1.2,满足我们测试的要求若测试完毕,删除上面三行即可
下面开始配置多网站:
上面搞好后,那么就可以配置成下面的,记住NameVirtualHost 192.168.1.2:80 这个一定要有,否则,打开所有的域名,都是指向第一个,这个就是很多人出现的配置不成功的问题所在了。
NameVirtualHost 192.168.1.2:80
<VirtualHost 192.168.1.2:80>
DocumentRoot D:/webroot/web001
ServerName www.*****01.com
DirectoryIndex index.html
</virtualHost>
<VirtualHost 192.168.1.2:80>
DocumentRoot D:/webroot/web002
ServerName www.*****02.com
DirectoryIndex index.html
</virtualHost>
<VirtualHost 192.168.1.2:80>
DocumentRoot D:/webroot/web003
ServerName www.*****03.com
DirectoryIndex index.html
</virtualHost>
重启APACHE后,就可以用上面的三个域名打开,就会显示不同的内容了,测试成功。
我们继续扩展上面的代码,以第一个为例:
NameVirtualHost 192.168.1.2:80
<VirtualHost 192.168.1.2:80>
ServerName www.*****01.com
DocumentRoot D:/webroot/web001
DirectoryIndex index.html
<Directory "D:/webroot/web001">
Options Indexes FollowSymLinks
AllowOverride Options FileInfo
order allow,deny
Allow from all
</Directory>
</VirtualHost>
第一个,加入了可以看到根目录所有文件的代码,不过,最好大家不要加上,安全性的问题。
其实扩展的,是在配置文件前面代码基础下,有则覆盖,没则继承的原则来做的,和CSS一样。根据自己的需求来定吧。其他的,大家自己去发现吧。


NameVirtualHost *:85

<VirtualHost *:85>
DocumentRoot "E:/wwwroot/php/we"
ServerName *****1.xx.com
<Directory "E:/wwwroot/php/we">   
 Options FollowSymLinks IncludesNOEXEC Indexes  
 DirectoryIndex  index.php   
 AllowOverride None   
 Order Deny,Allow   
 Allow from all   
</Directory>
</Virtualhost>

<VirtualHost *:85>
DocumentRoot "E:/wwwroot/php/phpadmin/phpadmin"
ServerName *****2.xx.com
<Directory "E:/wwwroot/php/phpadmin/phpadmin">   
 Options FollowSymLinks IncludesNOEXEC Indexes  
 DirectoryIndex  index.php   
 AllowOverride None   
 Order Deny,Allow   
 Allow from all   
</Directory>
</Virtualhost>

全部都需要 特别是NameVirtualHost *:85 不加会造成网站打开 *****1.xx.com和 *****2.xx.com显示为站点都相同

<Directory e:/sp>
Order Deny,Allow
Allow from all
Options All
AllowOverride All
</Directory>


<VirtualHost 127.0.0.2:8080>
DocumentRoot "E:/sp"
ServerName www.*****.com.cn
DirectoryIndex index.html index.htm index.php default.php
</VirtualHost>


#Include conf/extra/httpd-vhosts.conf 前面的#去掉,再去编辑httpd-vhosts.conf。

httpd.conf 里面一般放置通用设置。

<VirtualHost *:80>
    ServerAdmin xxxxxxxxxx   
    DocumentRoot "xxxxxxxxxxxxx"
    <Directory "xxxxxxxxxx">
AddOutputFilterByType DEFLATE text/html text/htm text/shtml text/plain text/xml text/css text/javascript application/javascript application/x-javascript application/xml
    </Directory>
    ServerName www.*****net
</VirtualHost>


apache 如何配置多站点详细
APACHE多站点配置方法
例如你的主机IP:192.168.1.8
而你有三个站点

相应的网站文件放在主机的:/website/111;D:/website/222;D:/website/333文件夹下
现在打开APACHE配置文件httpd.conf文件,设置不同的域名到不同的目录中:

NameVirtualHost 192.168.1.8
<VirtualHost 192.168.1.8>
DocumentRoot "D:/website/111"
ServerName www.*****.com
</Virtualhost>
<VirtualHost 192.168.1.8>
DocumentRoot "D:/website/222"
ServerName www.*****.com
</Virtualhost>
<VirtualHost 192.168.1.8>
DocumentRoot "D:/website/333"
ServerName www.*****com.cn
</Virtualhost>
保存关闭文件,重启一下APACHE就可以了!
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-17270-1.html
网站维护教程更新时间:2023-02-02 17:10:30  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer