WAMP多站点调试

conf目录:
......
IncludeOptional "e:/wamp/vhosts/*"
......

conf\extra目录:
httpd-vhosts.conf

<VirtualHost *:80>
DocumentRoot "e:\wamp\www\2"
ServerName 127.0.0.2
DirectoryIndex index.php index.html
<Directory "e:\wamp\www\2">
    Options Indexes FollowSymLinks Multiviews
    AllowOverride All
    Order Allow,Deny
    Allow from all
</Directory>
</Virtualhost>



 

 

你可能感兴趣的:(WAMP多站点调试)