apache on windows virtual directory config help

前端 未结 7 612
萌比男神i
萌比男神i 2021-02-04 02:25

I\'m running Apache on Windows XP via Xampplite, and could use help configuring my virtual directory. Here\'s what I\'m hoping to do on my dev box:

  1. I want my sourc
7条回答
  •  眼角桃花
    2021-02-04 02:53

    Figured it out: use Alias for #3, instead of VirtualHost, thus:

    Alias /myproject "C:/path/to/my/project"
    
      Options Indexes FollowSymLinks MultiViews ExecCGI
      AllowOverride All
      Order allow,deny
      Allow from all
    
    

提交回复
热议问题