我找到了/ etc / apache2 /,但没有文件夹:sites-available
我需要做那个配置:
在“apache2 / sites-available /”目录中编辑默认值如下
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
XSendFilePath /
</Directory>
如何在Mac OS yosemite上解决这个问题?
答案 0 :(得分:1)
您可以将此配置直接添加到/etc/apache2/httpd.conf
。
如果您需要sites-available
目录,可以在/etc/apache2/
下进行,然后将Include /etc/apache2/sites-available/*
指令添加到httpd.conf
。