zoukankan      html  css  js  c++  java
  • apache vhost

    httpd.conf:

    Include "F:/wamp/alias/*"



    <Directory "F:wampwww">
        Options Indexes FollowSymLinks Multiviews
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
    <VirtualHost *:80>
        DocumentRoot F:wampwww
        ServerName  localhost
    </VirtualHost>


    <VirtualHost 168.192.122.74:80>
        DocumentRoot f:/wamp/www2
        ServerName 168.192.122.74:80
    </VirtualHost>


    <Directory "f:/wamp/www2">
        Options Indexes FollowSymLinks Multiviews
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>

    httpd-vhost.conf:

    <VirtualHost *:80>
        ServerAdmin mss112.com
        DocumentRoot "F:/wamp/www2/veryeast/jingnian_phone/Code/v1.2/webroot"
        ServerName mssv12.com
        ServerAlias www.dummy-host.example.com
        ErrorLog "logs/dummy-host.example.com-error.log"
        CustomLog "logs/dummy-host.example.com-access.log" common
    </VirtualHost>

    wamp2.49,php5.5:

    1. 这里用wamp做演示,wamp2.5内置了Apache2.4.9,我们先安装完wamp2.5.

    2. 2

      我们打开Apache目录wampinapacheapache2.4.9下的“conf”文件夹,完整路径:C:wampin apacheapache2.4.9conf,找到httpd.conf,用sublime text或者notepad等代码编辑器打开。

    3. 3

      找到

      #   onlineoffline tag - don't remove

      下方的:

      Require local

    4. 4

      将  Require local   替换成: Require all granted  即可。

  • 相关阅读:
    Javascript FP-ramdajs
    微信小程序开发
    SPA for HTML5
    One Liners to Impress Your Friends
    Sass (Syntactically Awesome StyleSheets)
    iOS App Icon Template 5.0
    React Native Life Cycle and Communication
    Meteor framework
    RESTful Mongodb
    Server-sent Events
  • 原文地址:https://www.cnblogs.com/jami918/p/3461308.html
Copyright © 2011-2022 走看看