欢迎来到代码驿站!

Windows

当前位置:首页 > 服务器 > Windows

Windows环境下如何配置wamp的虚拟域名

时间:2020-11-26 22:49:53|栏目:Windows|点击:

修改服务域名,其主要就是修改关于apache的配置文件

1打开apache的mod_rewrite功能

LoadModule rewrite_module modules/mod_rewrite.so//删除前面的#

2引入http-vhosts文件

Include conf/extra/httpd-vhosts.conf//删除前面的#

3进入conf/extra文件夹找到http-hosts文件

NameVirtualHost*:80  //绑定80端口          listen 端口号//手动设置监听
<VirtualHost *:80>
  ServerAdmin suibainxie@suibian.com
  DocumentRoot "D:/Install/wamp/www/你的目录"
  ServerName www.你的域名.com
</VirtualHost>

4开启访问权限

返回配置文件

<Directory />
  Options FollowSymLinks
  AllowOverride All
  Order deny,allow
  Allow from all
  Require all granted
</Directory>

找到以上后,加载virhost的下面

修改

<Directory />的斜杠为你的文件夹绝对路径

5修改windows的hosts文件指向即可。

上一篇:WebsitePanel Standalone Server安装配置方法

栏    目:Windows

下一篇:Windows SVN服务器搭建方法

本文标题:Windows环境下如何配置wamp的虚拟域名

本文地址:http://www.codeinn.net/misctech/26608.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有