在httpd-vhosts.conf
中,新建如下内容:
<VirtualHost 127.0.0.1>
ServerName x.y:8000
DocumentRoot "D:\projects\xxx\web"
<Directory "D:\projects\xxx\web">
RewriteEngine on
AllowOverride All
</Directory>
</VirtualHost>
重启Apache即可生效。