標籤:管理員 apache option address cto tcp ons map style
1、apache 的設定檔 httpd.conf;找到
# Virtual hostsInclude conf/extra/httpd-vhosts.conf
把include前的#注釋去掉;
2、找到 apache conf 設定檔下extra檔案夾下的 httpd-vhosts.conf 設定檔
# Virtual Hosts#<VirtualHost *:80> ServerName localhost DocumentRoot D:/mydocument/wamp/wamp64/www <Directory "D:/mydocument/wamp/wamp64/www/"> Options +Indexes +Includes +FollowSymLinks +MultiViews AllowOverride All Require local </Directory></VirtualHost>
#配置的虛擬機器主機 myhome<VirtualHost *:80> ServerName myhome DocumentRoot D:/mydocument/sentCMS <Directory "D:/mydocument/sentCMS/"> Options +Indexes +Includes +FollowSymLinks +MultiViews AllowOverride All Require local </Directory></VirtualHost>#
3、解析網域名稱找到 C:\Windows\System32\drivers\etc下的 hosts 配置
# Copyright (c) 1993-2009 Microsoft Corp.## This is a sample HOSTS file used by Microsoft TCP/IP for Windows.## This file contains the mappings of IP addresses to host names. Each# entry should be kept on an individual line. The IP address should# be placed in the first column followed by the corresponding host name.# The IP address and the host name should be separated by at least one# space.## Additionally, comments (such as these) may be inserted on individual# lines or following the machine name denoted by a ‘#‘ symbol.## For example:## 102.54.94.97 rhino.acme.com # source server# 38.25.63.10 x.acme.com # x client host# localhost name resolution is handled within DNS itself.# 127.0.0.1 localhost# ::1 localhost127.0.0.1 bandicam.com127.0.0.1 ssl.bandisoft.com127.0.0.1 localhost
#配置的myhome127.0.0.1 myhome
注意 修改hosts 檔案需要以管理員的身份訪問 可以這樣解決 右擊滑鼠 找到屬性 到安全 、點編輯、 組名使用者名稱選users、users 許可權 勾修改 寫入 應用即可!
第一次 訪問時 前邊加上HTTP//myhome/index.php
apache配置虛擬機器主機