I am trying to set up a local environment for developing and testing an existing PHP application.
I chose Eclipse PDT as my IDE and xDebug as a debugging module. When testing individual files in the server root directory everything works fine. However, some folders in my project should allow as subdomains when starting the debugger:
/index.php -> hostname /index.php
/control/index.php → control.hostname / index.php
/support/a/b.php → support.hostname / a / b.php
Is there any way to do this? I tried using path mappings in the settings of PHP Server, but this does not seem to affect the Eclipse URL that is generated when debugging starts.
Many thanks!
eclipse php xdebug subdomain eclipse-pdt
Preyes
source share