时间:2021-07-01 10:21:17 帮助过:3人阅读
VirtualHost 配置NameVirtualHost *:80 /*设置端口*/ DocumentRoot "E:\wamp\www" /*设置文件路径*/ ServerName localhost:80 /*访问域名*/ Options Indexes FollowSymLinks /*禁止显示Apache目录列表-Indexes FollowSymLinks*/ AllowOverride all Order allow,deny Allow from all /*配置新的域名,配置同上*/ DocumentRoot "E:\project\first" ServerName first.com ServerAlias *.first.com Options Indexes FollowSymLinks AllowOverride all Order allow,deny Allow from all |