美文网首页
配置XAMPP

配置XAMPP

作者: la88 | 来源:发表于2019-11-26 20:06 被阅读0次

    Apache

    80端口被占用

    到这个目录下\ xampp\apache\conf ,打开httpd.conf,将里边的80端口全部改成一个未被占用的端口,比如8001

    443端口被占用

    到这个目录 \ xampp\apache\conf\extra ,打开httpd-ssl.conf ,将文件里的443端口全部换成一个未被占用的端口,比如4431

    可在界面中Apache-config中找到相应文件:

    配置虚拟主机(未解决)

    XAMPP的安装目录==>apache==>conf==>extra=>httpd-vhosts.conf。

    在文件最下方添加如下代码:



    <VirtualHost *:80>

    ServerName la88.com ##主机名,自定义

    DocumentRoot "D:/XAMPP/virtualhost" ##虚拟主机路径

    <Directory "D:/XAMPP/virtualhost">##虚拟主机路径

    Options FollowSymLinks IncludesNOEXEC Indexes

    DirectoryIndex index.html index.htm index.php

    AllowOverride all

    Order Deny,Allow

    Allow from all

    Require all granted

    </Directory>

    </VirtualHost>

    测试访问(按默认虚拟主机地址)

    step1 将项目代码拷贝至xampp/htdocs/<项目文件夹>

    step2 开启Apache服务

    step3 浏览器访问 localhost/htdocs/<项目文件夹>/<index.php所在路径> ,如:

    相关文章

      网友评论

          本文标题:配置XAMPP

          本文链接:https://www.haomeiwen.com/subject/nribhctx.html