`

VirtualHost 配置

    博客分类:
  • PHP
阅读更多
<VirtualHost *:80>
    ServerAdmin stefan321@qq.com
    DocumentRoot "E:\xampp\htdocs"
    ServerName 127.0.0.1
    ErrorLog E:\xampp\htdocs\error_log
    CustomLog E:\xampp\htdocs\access_log common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin stefan321@qq.com
    DocumentRoot "E:\xampp\htdocs"
    ServerName localhost
    ErrorLog E:\xampp\htdocs\error_log
    CustomLog E:\xampp\htdocs\access_log common
</VirtualHost>


<VirtualHost *:80>
    ServerAdmin stefan321@qq.com
    DocumentRoot "E:/www/Magento/magento"
    ServerName local.magento.com
    ErrorLog E:\www\Magento\magento\local.magento.com-error_log
    CustomLog E:\www\Magento\magento\local.magento.com-access_log common
</VirtualHost>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "E:/www">
    #
    # 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 Includes ExecCGI
   
    #
    # 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 All

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>
分享到:
评论

相关推荐

    Nginx 虚拟主机 VirtualHost 配置

    Nginx 虚拟主机 VirtualHost 配置

    Apache VirtualHost配置

    NULL 博文链接:https://sandy902724921-163-com.iteye.com/blog/1808232

    apache2-create-virtualhost:为其他网站添加虚拟主机

    apache2-create-virtualhost 该脚本为apache2 Web服务器创建了附加的virtualhost配置。 接受2个参数,网站目录,网站域名。 只需将这两个参数添加到下面的代码片段的末尾即可。在下面运行此代码以执行脚本以启动...

    Apache中Virtual Host虚拟主机配置及rewrite参数说明

    以下是一个具体的Virtual Host配置示例: ```apache # 进入Apache虚拟主机设置目录 cd /etc/apache2/sites-available # 创建虚拟主机配置文件 cat &gt; demo.jb51.net &lt;VirtualHost *:80&gt; ServerAdmin webmaster@...

    VirtualHost 用IIS架构虚拟主机

    VirtualHost说明文档 一、运行环境 操作系统Window XP/Window Server 2000/Window Server 2003/Window Server 2008 IIS 版本:IIS 5.0 / IIS 6.0 二、功能说明 本程序的功能是,在一台服务器、一个IP地址的...

    CentOS配置虚拟主机virtualhost使服务器支持多网站多域名的方法

    每段配置以`&lt;VirtualHost&gt;`开始,以`&lt;/VirtualHost&gt;`结束。例如: ``` &lt;VirtualHost *:80&gt; ServerAdmin admin@example.com DocumentRoot /var/www/html ServerName www.yourweb.com ErrorLog /var/log/httpd...

    apache设置域名绑定 以及绑定不起作用的排查.docx

    2. **创建VirtualHost配置** `VirtualHost`指令用于定义每个虚拟主机的配置。例如: ``` &lt;VirtualHost *:80&gt; ServerName www.188bao.com DocumentRoot "/path/to/188bao.com/content" &lt;/VirtualHost&gt; ``` 在...

    trac,windows安装3

    9. **配置Apache**:在Apache的配置文件中添加Trac的VirtualHost配置,指定Trac的入口点、环境路径和mod_python的设置。例如: ``` &lt;VirtualHost *:80&gt; ServerName your.trac.domain.com PythonPath "['/path/...

    Apache NameVirtualHost *:80 has no VirtualHosts问题解决办法

    这个错误是由于Apache无法找到任何与NameVirtualHost指令匹配的VirtualHost配置。 首先,让我们深入理解一下`NameVirtualHost`和`VirtualHost`这两个概念: 1. **NameVirtualHost**: 这个指令告诉Apache启用基于...

    单台服务器中利用Apache的VirtualHost如何搭建多个Web站点详解

    本文将详细记录一下如何在单台服务器上,利用apache的virtualhost(虚拟主机)来搭建多个不同的web站点,并且每个站点独立管理自己的session,下面话不多说了,来一起看看详细的介绍吧。 开发环境 先说下我各项开发...

    虚拟机中如何在Linux上安装和配置Apache服务器

    3. 配置虚拟主机的目录权限:在 VirtualHost 配置块中添加 Directory 配置块,设置虚拟主机的目录权限。 4. 编辑 hosts 文件:在本地的 hosts 文件中添加虚拟主机的 IP 地址和主机域名。 三、测试 Apache 服务器 ...

    配置apache开启虚拟路径(伪静态)的方法.zip

    这通过使用VirtualHost配置实现。在Apache的配置文件httpd.conf或单独的vhosts.conf中,我们需要创建一个或多个VirtualHost段来定义每个站点的信息。例如: ```conf &lt;VirtualHost *:80&gt; ServerName example.com ...

    USB Virtual Host Controller Interface-开源

    USB虚拟主机控制器接口(USB Virtual Host Controller Interface,简称USB VHCI)是一种技术,它使得操作系统中的应用程序能够模拟USB主机控制器,从而实现对USB设备的控制。这个项目是开源的,这意味着它的源代码对...

    apache phpmyadmin php mysql 域名转发

    关于“域名转发”,这通常指的是使用Apache的重定向功能(比如mod_rewrite模块)或者VirtualHost配置来实现。例如,如果想要将所有请求从旧域名转发到新域名,可以在VirtualHost配置中添加以下规则: ```apacheconf ...

    apahce 和 weblogic 集群(基于域名)

    - 创建VirtualHost配置,为每个WebLogic Server实例定义别名和代理规则。 ```apacheconfig &lt;VirtualHost 192.168.1.199&gt; ServerName www.jsp-examples.com WLProxyServerName jsp-examples WLProxyServerPort...

    cyberoam技术文档

    1. **创建虚拟主机**:通过路径`Firewall → VirtualHost → Create`进入虚拟主机创建页面。 2. **输入参数**: - **VirtualHostName**:为新创建的虚拟主机命名,仅支持数字、英文大小写字母及下划线。 - **...

    apache配置虚拟主机

    上述错误配置示例中,有四个虚拟主机配置,但每个`VirtualHost`块都没有指定它们属于哪个IP地址。Apache在启动时会发出警告,指出默认虚拟主机在端口80上的重叠,这意味着所有请求都将被第一个定义的虚拟主机接收,...

    phabricator部署手册

    * VirtualHost配置:phabricator的部署需要配置VirtualHost,包括ServerName、DocumentRoot、RewriteEngine和Directory等配置项。 phabricator优势 * 开源:phabricator是一个开源的代码审查系统,能够帮助软件...

Global site tag (gtag.js) - Google Analytics