服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - WEB服务器 - Apache为mysql以及自己的项目设置虚拟路径

Apache为mysql以及自己的项目设置虚拟路径

2020-11-29 15:30服务器技术网 WEB服务器

Apache为mysql以及自己的项目设置虚拟路径的实现方法,有需要的朋友可以参考下

1.Apache2.2\conf\httpd.conf中释放:
Include conf/extra/httpd-vhosts.conf(去掉前面的#)
2.httpd.conf中增加
<Directory "E:/work/test"> #项目文件夹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
</Directory>
<Directory "C:/phpMyAdmin"> #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
</Directory>
3.在文件Apache2.2\conf\extra\httpd-vhosts.conf中增加:

复制代码 代码如下:


<VirtualHost *:80> #放在第一个
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
</VirtualHost>
<VirtualHost *:80>
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
</VirtualHost>
<VirtualHost *:80>
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
</VirtualHost>


4.在windows\system32\drivers\etc\hosts檔中增加:(是hosts檔,不是hosts.msn之类的)
127.0.0.1 test
127.0.0.1 mysql
5.在浏览器中输入:
http://mysql/index.php //查看数据库设置是否成功
http://test/index.php //查看项目路径设置是否成功

延伸 · 阅读

精彩推荐
  • WEB服务器阿里云web服务器部署

    阿里云web服务器部署

    一、前言 近年来,云计算技术得到了广泛的应用和推广,其中 云服务器 成为了最受欢迎的云服务之一。在众多 云服务商 中, 阿里云 是最大的一家,其云...

    未知1902023-05-23
  • WEB服务器phpstudy在本地搭建多个网站的方法

    phpstudy在本地搭建多个网站的方法

    经常做网站的朋友,往往要在自已的电脑同时建立多个站点,而 phpstudy 这款软件就能很好的解决这个问题,大家看下图 点击上图中的 其它选项菜单 ,就会...

    服务器之家13882019-10-08
  • WEB服务器Apache启用GZIP压缩网页传输方法

    Apache启用GZIP压缩网页传输方法

    上一篇文章我们已经介绍了Apache启用GZIP压缩网页的方法,这里又发现了一篇好文章,特分享给大家...

    服务器技术网8162021-09-30
  • WEB服务器怎么在阿里云服务器上运行javaweb

    怎么在阿里云服务器上运行javaweb

    如何在阿里 云服务器 上运行Javaweb 作为一名开发人员,将Java Web应用程序部署在云服务器上是非常常见的任务。 阿里云 作为国内领先的云计算平台,提供...

    未知832023-06-20
  • WEB服务器阿里云服务器支不支持web

    阿里云服务器支不支持web

    阿里 云服务器 是一款由阿里巴巴集团提供的云计算服务,旨在为用户提供高性能、可靠的云端计算平台。作为一家全球领先的云计算服务提供商, 阿里云...

    未知1372023-07-06
  • WEB服务器阿里云ossweb服务器

    阿里云ossweb服务器

    阿里云 OSS(Object Storage Service)是一个面向 Internet 的对象存储服务平台,提供海量、安全、低成本、高扩展的数据存储和访问服务。OSS 可以作为 Web 服务器...

    未知1362023-07-09
  • WEB服务器2019常见六种web服务器软件介绍

    2019常见六种web服务器软件介绍

    WEB服务器也可以称为网站服务器,可以用来放置网站文件,供用户浏览。那么常见的WEB服务器软件有哪些呢? ①Apache Apache是世界使用排名的Web服务器软件。...

    服务器之家21692019-05-25
  • WEB服务器PHPStudy下如何为Apache安装SSL证书的方法步骤

    PHPStudy下如何为Apache安装SSL证书的方法步骤

    这篇文章主要介绍了PHPStudy下如何为Apache安装SSL证书的方法步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    沃通CA3962019-06-29