时间:2021-07-01 10:21:17 帮助过:19人阅读
1.首先在 X:\PHPnow\Apache-20\conf目录下找到httpd.conf文件
?? 找到 Listen 80,在下面建立Listen 新端口号
?? 然后 找到Include conf/extra/httpd-vhosts.conf 如果前面有分号将其去掉
2.在X:\PHPnow\Apache-20\conf\extra中找到 httpd-vhosts.conf
?? 添加如下代码:
Options -Indexes FollowSymLinks Allow from all AllowOverride All ServerAdmin admin@localhost DocumentRoot "网站根目录" ServerName default:新端口号 ErrorLog logs/default-error_log
3.重启Apache。