欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Windows系统在本地配置一个apache域名的方法

程序员文章站 2022-06-05 21:06:34
我使用的xampp 1、修改C:\Windows\System32\drivers\etc中的hosts文件,添加127.0.0.1 www.feiquan.com 2、修改D:\xampp\apache\conf\extra中的httpd-vhosts.conf,添加 3. 配置D:\xampp\ ......

我使用的xampp

 

1、修改c:\windows\system32\drivers\etc中的hosts文件,添加127.0.0.1 www.feiquan.com

2、修改d:\xampp\apache\conf\extra中的httpd-vhosts.conf,添加

<virtualhost *:80>
    documentroot "网站路径"
    servername www.feiquan.com
    errorlog "logs/www.feiquan.com-error.log"
    customlog "logs/www.feiquan.com-access.log" common
</virtualhost>

3. 配置d:\xampp\apache\conf\httpd.conf  

  3.1:将listen 80给为listen 自己的ip:80

  3.2将servername localhost:80改为 自己的ip:80

  3.3在文件最后添加:

 

<directory "网站路径">
    allowoverride none
    options none
    order allow,deny
    allow from all
</directory>

 

  3.4如果还不行 ,那可能还需要配置xampp\apache\conf\extra\httpd-xampp.conf中的httpd-xampp.conf

    按3.3的方法,将deny改为allow


重启apache服务。