博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apache 配置虚拟主机
阅读量:6814 次
发布时间:2019-06-26

本文共 1058 字,大约阅读时间需要 3 分钟。

hot3.png

//远程连接登陆不上数据库phpmyadmin页面

D:\xampp\apache\conf\extra 文件夹下的httpd_xampp.conf文件

Deny from all注释掉 加个#号

============================================================
//配置appche路径
D:\xampp\apache\conf文件夹下的httpd.conf文件

DocumentRoot "D:/xampp/htdocs/ppc/source/hljzr"

<Directory "D:/xampp/htdocs/ppc/source/hljzr">
===============================================================
//想用apache服务下的vhosts服务

在apache文件夹下找到httpd

修改  把include前面的"#"去掉
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
================================================================
//如何用vhosts服务

在vhosts服务文件里写入如下代码

<VirtualHost *:80>
    #ServerAdmin
    DocumentRoot "C:/localhost/cs_witkey"
    ServerName

    <Directory "C:/localhost/cs_witkey">

    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    #ServerAlias

    #ErrorLog "logs/dummy-host.localhost-error.log"
    #CustomLog "logs/dummy-host.localhost-access.log" combined
================================================================
</VirtualHost>

转载于:https://my.oschina.net/shunshun/blog/55182

你可能感兴趣的文章
$.format,jquery.format 使用说明
查看>>
安装LSB--lsb_release:command not found
查看>>
我的友情链接
查看>>
Ubuntu使用root用户+安装mysql5.07+基础配置
查看>>
常用命令及目录介绍
查看>>
实现手机号属地查询
查看>>
区块链3.0_精通Hyperledger之搭建Farbic-samples环境(2)
查看>>
VMware下ubuntu上网设置(二)
查看>>
Maven3路程(三)用Maven创建第一个web项目(转)
查看>>
网站pr突然从0变成3了.一夜之间pr升到3了.
查看>>
口字型网络建立HSRP
查看>>
PostgreSQL中如何判断某个SCHEMA是否存在。
查看>>
多线多IP交换机配置(华为交换机)
查看>>
Linux平台下PHP zip模块
查看>>
写其他进程的环境变量
查看>>
Visual Studio统计有效代码行数
查看>>
Qt连接Oracle数据库常见问题
查看>>
45个实用的JavaScript技巧、窍门和最佳实践
查看>>
sqlserver 2005 列字符串拼接
查看>>
TSharding源码阅读-MapperShardingInitializer
查看>>