この質問は何度も聞かれていると思いますが、問題は発生していません。Zendフレームワークを構成するXAMPPを使用しています。
XAMPPはポート8081で実行されています。これは、80がいくつかのWindowsプロセスによって占有されているため、次のコードでC:/xampp/apache/config/extra/httpd-vhosts.config
(またはC:/xampp/apache/conf/extra/httpd-vhosts.conf
新しいリリースで)構成する仮想ホストを使用する必要があるためです。
<VirtualHost *:80>
ServerName comm-app.local
DocumentRoot "C:/xampp/htdocs/CommunicationApp/public"
SetEnv APPLICATION_ENV "development"
<Directory "C:/xampp/htdocs/CommunicationApp/public"
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
また、hostsファイルを更新して127.0.0.1 comm-app.local
Apacheを再起動しようとしましたが、エラーが表示されています。
15:03:01 [Apache] Error: Apache shutdown unexpectedly.
15:03:01 [Apache] This may be due to a blocked port, missing dependencies,
15:03:01 [Apache] improper privileges, a crash, or a shutdown by another method.
15:03:01 [Apache] Press the Logs button to view error logs and check
15:03:01 [Apache] the Windows Event Viewer for more clues
15:03:01 [Apache] If you need more help, copy and post this
15:03:01 [Apache] entire log window on the forums