0
从本地网络上的虚拟主机获取数据需要10秒以上
我有一个基于PHP-MySQL的单页面应用程序(使用Angular 6),在本地网络上工作。 我们设置etc/hosts如下: #127.0.0.1 localhost #::1 localhost 192.168.0.217 dev.local ::1 dev.local #127.0.0.1 angular.local #::1 angular.local 127.0.0.1 localhost ::1 localhost 192.168.0.217 angular.local ::1 angular.local 该angular.local是对用户打开的窗口和应用程序dev.local来访问PHP脚本登录,添加,编辑,... httpd-vhosts如下: # Virtual Hosts # <VirtualHost *:80> ServerName localhost ServerAlias localhost DocumentRoot "${INSTALL_DIR}/www" <Directory "${INSTALL_DIR}/www/"> Options +Indexes +Includes +FollowSymLinks +MultiViews AllowOverride All #Require local Allow from …