我在Redhat 7.2上运行Apache 2.4,我还安装了PHP 5.6。
我为网站创建了一个vhosts文件
<VirtualHost *:80>
DocumentRoot /var/www/html/ex1.mysite.com
ServerName ex1.mysite.com
ErrorLog logs/ex1.mysite.com-error-log
CustomLog logs/ex1.mysite.com-access_log common
<Directory /var/www/html/ex1.mysite.com>
AllowOverride AuthConfig FileInfo
Order allow,deny
allow from all
</Directory>
我可以在浏览器中查看index.html,但是当我尝试加载PHP文件时,收到“未找到文件”的消息。我能够在默认位置(var / www / html)查看PHP文件。
有没有办法让PHP在虚拟主机中工作?