环境:Windows10
刚刚下载了PhpStudy2018,安装之后运行发现Apache开启不了。
排除端口占用以及防火墙的问题
应该是配置错误了
在 vhost-ini 改 成
<VirtualHost _default_:80>
DocumentRoot "C:\\phpStudy\\PHPTutorial\\WWW"
<Directory "C:\\phpStudy\\PHPTutorial\\WWW">
Options -Indexes -FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
注意:路径要使用 \\