当前位置:首页 > 服务器技术 > apache

关于apache虚拟域名的设置

设置虚拟域名

1.修改hosts文件,目录:C:WindowsSystem32driversetc,添加,例

localhost doma.com

2.修改httpd.conf文件


    AllowOverride none
    Require all denied

    #AllowOverride none
    #Require all denied

   AllowOverride all
    Order deny,allow
    Allow from all

3.修改https-vhosts.conf文件,添加,例
<VirtualHost *:80>
    ServerAdmin doma.com
    DocumentRoot "c:/wamp/www/doma"
    ServerName doma.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
重启apache服务,访问域名doma.com,成功

但是,出现了问题,访问localhost,或者其他目录报错

403 Forbidden You don't have permission to access / on this server
404 Forbidden The requested URL  was not found on this server
无法决绝该错误,删除原有修改,重启服务器,上述错误仍然存在,无法理解

需要血钙https-vhosts.cong文件,将其中的

<VirtualHost *:80>
  ...
全部注释,修改httpd.cong文件,


    #AllowOverride none
    #Require all denied

    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all

问题解决,虚拟域名设置失败,有待思考解决

以上就介绍了 关于apache虚拟域名的设置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!