Apache服务器中配置虚拟机的方法,apache虚拟机_PHP教程

php中文网
发布: 2016-07-12 08:54:44
原创
1228人浏览过

apache服务器中配置虚拟机的方法,apache虚拟机

新浪微博虚拟机开发配置步骤及介绍。
1、由于后面虚拟机中需要用到rewrite所以先编辑apache的conf目录下的httpd.conf文件。(可根据实际需要操作)
添加mod_rewrite.so模块支持。去掉下列行中前面的#号。
loadmodule rewrite_module modules/mod_rewrite.so
2、配置apache支持虚拟机。这一步很重要。
# virtual hosts
#include conf/extra/httpd-vhosts.conf
找到 上面相关文本,去掉#include conf/extra/httpd-vhosts.conf前的#。
# virtual hosts
include conf/extra/httpd-vhosts.conf
保存退出。
3、编辑conf目录下extra文件夹下的httpd-vhosts.conf。
去掉实例配置,添加新有配置。以新浪微博为例,配置文件如下:
#
# virtual hosts
#
# if you want to maintain multiple domains/hostnames on your
# machine you can setup virtualhost containers for them. most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# ip addresses. this is indicated by the asterisks in the directives below.
#
# please see the documentation at
#
# for further details before you try to setup virtual hosts.
#
# you may use the command line option '-s' to verify your virtual host
# configuration.
#
# use name-based virtual hosting.
#
namevirtualhost *:80
#
# virtualhost example:
# almost any apache directive may go into a virtualhost container.
# the first virtualhost section is used for all requests that do not
# match a servername or serveralias in any block.
#

    #管理员邮箱
    serveradmin  jiangfeng3@staff.sina.com.cn 
    #项目根目录   
    documentroot "d:/htdocs/frame_export"       
    #域名  
    servername test.t.sina.com.cn   
    #别名                      
    serveralias test.t.sina.com.cn
    #错误日志路径
    errorlog "logs/test.t.sins.com.cn-error.log"
    customlog "logs/test.t.sins.com.cn-access.log" common
    rewriteengine on
    #重写规则,可根据实际需要添加
    rewriterule  ^/(.*)$       /apps/index.php [l]

4、编辑本地host文件,以windows为例
进入c:/windows/system32/drivers/etc
记事本打开hosts文件
最后添加
 127.0.0.1       localhost
 127.0.0.1       test.t.sina.com.cn
例子:
# 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             localhost
 127.0.0.1       test.t.sina.com.cn
保存退出
5、重启apache,浏览器输入http://test.t.sina.com.cn

转载请注明原文地址:http://www.server110.com/apache/201309/1615.html

百度虚拟主播
百度虚拟主播

百度智能云平台的一站式、灵活化的虚拟主播直播解决方案

百度虚拟主播 36
查看详情 百度虚拟主播

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1119057.htmlTechArticleApache服务器中配置虚拟机的方法,apache虚拟机 新浪微博虚拟机开发配置步骤及介绍。 1、由于后面虚拟机中需要用到Rewrite所以先编辑Apach...
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号