Apache Dev网站被Chrome / Safari阻止但不是FireFox

时间:2018-01-03 22:35:27

标签: apache google-chrome safari macos-high-sierra

将iMac升级到OSX High Sierra之后,即使完全重新配置Apache和phpMyAdmin,我的开发网站也无法访问。

  • localhost工作(获取默认的Apache索引页面显示“它工作!”)
  • http://127.0.0.1/~Ross/wonderfest/web/index.php适用于Chrome,Safari和FF
  • wonderfest.dev不适用于Chrome或Safari,但可以在FF中使用
  • 错误:
  

此网站无法访问wonderfest.dev拒绝连接。尝试:

     

检查连接检查代理和防火墙   ERR_CONNECTION_REFUSED

我的/etc/apache2/extra/httpd-vhosts.conf文件内容:

<FilesMatch ".+\.html$">
 SetHandler application/x-httpd-php
</FilesMatch>

<VirtualHost *:80>
 DocumentRoot "/Library/WebServer/Documents"
 ServerName localhost
</VirtualHost>

<VirtualHost *:80>
 DocumentRoot "/Users/Ross/Sites/wonderfest"
 ServerName wonderfest.dev
 ErrorLog "/private/var/log/apache2/wonderfest.dev-error_log"
 CustomLog "/private/var/log/apache2/wonderfest.dev.local-access_log" common

 <Directory "/Users/Ross/Sites/wonderfest">
   AllowOverride All
   Require all granted
 </Directory>
</VirtualHost>

我想我的问题归结为:为什么FF在所有情况下都能正常工作,而不是Safari&amp;铬?我启动了mySQL,phpMyAdmin工作正常。

0 个答案:

没有答案