码迷,mamicode.com
首页 > 其他好文 > 详细

wamp配置虚拟域名

时间:2015-06-29 21:56:44      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

1、打开apache下httpd.conf

我的目录是在F:\wamp\bin\apache\apache2.2.22\conf\httpd.conf

2、去掉这两行前面的#注释

LoadModule rewrite_module modules/mod_rewrite.so

Include conf/extra/httpd-vhosts.conf

这两个注释

3、配置httpd-vhosts.conf

<VirtualHost *:80>
  ServerName i.fx-dev.com //配置域名
  DocumentRoot "F:\root" //配置运行目录

  #RewriteEngine on //需要时配置重写

  #RewriteCond $1 !^(index\.php|aaa)

  #RewriteRule ^(.*)$ /test/test.php/$1 [L]

  <Directory "F:\root"> //目录的权限一定要配置
    AllowOverride all
    Order Deny,Allow
    Allow from all
  </Directory>
</VirtualHost>

4、配置hosts

127.0.0.1 i.fx-dev.com

5、重启wamp

wamp配置虚拟域名

标签:

原文地址:http://www.cnblogs.com/gide/p/4608468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!