Saya hanya menghabiskan satu jam mencoba untuk membuat ini bekerja mengikuti langkah-langkah di SO tetapi saya akhirnya menjadi sedikit berbeda.
Pengaturan VMWare
1.) Setel koneksi VMWare ke NAT
2.) run> cmd> ipconfig> salin nilai Gateway Default
3.) edit file host (c: / Windows / System32 / drivers / etc / hosts)
- tambahkan ini ke file host Anda:
<gateway-ip> yourserver.local
Pengaturan OS X.
1.) edit konfigurasi Apache (misalnya, sudo vim /etc/apache2/httpd.conf)
- tambahkan entri vhost ini ke file httpd.conf Anda:
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
DocumentRoot "/ jalur / ke / proyek / Anda"
ServerName yourserver.local
<Directory "/ path / to / your / project">
AllowOverride All
Opsi Semua
</Directory>
</VirtualHost>
2.) Edit file host Anda (sudo vim / etc / hosts)
- tambahkan baris ini ke file host Anda
127.0.0.1 yourserver.local
3.) Mulai ulang Apache (sudo apachectl restart)
Saya menemukan bahwa saya harus mengganti pengaturan koneksi pada VMWare untuk memulai kembali koneksi sebelum pengaturan ini bekerja untuk saya. Saya harap ini membantu.