Eclipse PHPサーバ設定
Eclipseのサーバ管理の変更
Eclipse内
設定 → PHP → PHPサーバー → 編集 → ベースURL
http://localhost¥eclipse2
と記述
* eclipse2は、Aliasと同じ名前ならば何でもよい
Apacheのホームディレクトリにあるconfフォルダのhttpd.conf
<IfModule alias_module>内の
# the filesystem path.の下ぐらいに
Alias /eclipse2 “C:¥eclipse_3.7_PHP_2¥workspace”
<Directory “C:¥eclipse_3.7_PHP_2¥workspace”>
Options Indexes Multiviews ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
を追加記述
* C:¥eclipse_3.7_PHP_2¥workspaceは、workspaceのパス