1、在wamp的安装目录 \bin\apache\Apache2.4.4\conf 中找到 httpd.conf文件删除 Include conf/extra/httpd-vhosts.conf 这一行前面的注释,选择启用虚拟机的配置文件。
2、打开extra文件夹,找到httpd-vhosts.conf文件,然后在里面加入以下的配置参数命令。
<VirtualHost *:80> ServerName www.st.cn DocumentRoot "E:\www.st.cn" </VirtualHost>
3、如果访问的时候提示404错误,试试修改<Directory />命令成:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Allow from all </Directory>
时间: 2024-11-04 19:54:01