博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache为mysql以及自己的项目设置虚拟路径
阅读量:5757 次
发布时间:2019-06-18

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

  参考 http://www.120xcjl.com  Apache为mysql以及自己的项目设置虚拟路径 1.Apache2.2\conf\httpd.conf中释放:

  Include conf/extra/httpd-vhosts.conf(去掉前面的#)

  2.httpd.conf中增加

  #项目文件夹DWM目录,注意不要使用中文定义目录与文件夹

  #

  # Possible values for the Options directive are "None", "All",

  # or any combination of:

  # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

  #

  # Note that "MultiViews" must be named *explicitly* --- "Options All"

  # doesn't give it to you.

  #

  # The Options directive is both complicated and important. Please see

  # http://httpd.apache.org/docs/2.2/mod/core.html#options

  # for more information.

  #

  Options FollowSymLinks

  #

  # AllowOverride controls what directives may be placed in .htaccess files.

  # It can be "All", "None", or any combination of the keywords:

  # Options FileInfo AuthConfig Limit

  #

  AllowOverride None

  #

  # Controls who can get stuff from this server.

  #

  Order allow,deny

  Allow from all

  #phpMyAdmin的安装路径

  #

  #

  # Possible values for the Options directive are "None", "All",

  # or any combination of:

  # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

  #

  # Note that "MultiViews" must be named *explicitly* --- "Options All"

  # doesn't give it to you.

  #

  # The Options directive is both complicated and important. Please see

  # http://httpd.apache.org/docs/2.2/mod/core.html#options

  # for more information.

  #

  Options Indexes FollowSymLinks

  #

  # AllowOverride controls what directives may be placed in .htaccess files.

  # It can be "All", "None", or any combination of the keywords:

  # Options FileInfo AuthConfig Limit

  #

  AllowOverride None

  #

  # Controls who can get stuff from this server.

  #

  Order allow,deny

  Allow from all

  3.在文件Apache2.2\conf\extra\httpd-vhosts.conf中增加:

  复制代码 代码如下:

  #放在第一个

  ServerAdmin webmaster@dummy-host2.ies.inventec

  DocumentRoot "D:\work\test"

  ServerName test

  ErrorLog "logs/dummy-host2.ies.inventec-error.log"

  CustomLog "logs/dummy-host2.ies.inventec-access.log" common

  ServerAdmin webmaster@dummy-host2.ies.inventec

  DocumentRoot "C:\Program Files\phpMyAdmin-2.11.4"

  ServerName mysql

  ErrorLog "logs/dummy-host2.ies.inventec-error.log"

  CustomLog "logs/dummy-host2.ies.inventec-access.log" common

  ServerAdmin webmaster@dummy-host2.ies.inventec

  DocumentRoot "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs"

  ServerName localhost

  ErrorLog "logs/dummy-host2.ies.inventec-error.log"

  CustomLog "logs/dummy-host2.ies.inventec-access.log" common

转载于:https://www.cnblogs.com/HanaKana/p/10754530.html

你可能感兴趣的文章
Windows Phone的Silverlight Toolkit 安装及其使用
查看>>
DBS:同学录
查看>>
Mysql备份系列(1)--备份方案总结性梳理
查看>>
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
jQuery中$.fn的用法示例介绍
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>
系列文章目录
查看>>
SVG 新手入门
查看>>
手把手教你如何提高神经网络的性能
查看>>
前端布局原理涉及到的相关概念总结
查看>>
递归调用 VS 循环调用
查看>>
通用词向量、句向量研究现状
查看>>
win10安装sdkman(posh-gvm)
查看>>