ysoren 发表于 2017-1-4 08:49:48

XAMPP中配置apache的Alias

  使用xampp-win32-1.7.0.zip
  配置XAMPP中apache的Alias
  在xampp\apache\conf\httpd.conf 文件最后,添加如下:

Alias /myphp "D:/source/pdt-workspaces/myphp"
<Directory "D:/source/pdt-workspaces/myphp">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
  然后启动xampp, 访问 http://localhost/myphp/test.php 就可以了
  配置xampp 的 debugger
  http://home.yulei.org/joomla/index.php/article/1-program/17-xamppeclipsepdtphp.html
页: [1]
查看完整版本: XAMPP中配置apache的Alias