apache on windows virtual directory config help

前端 未结 7 452
萌比男神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:56

    resolved the issue. it was missing the directory tag.

    NameVirtualHost myproject:80
    
        DocumentRoot "D:/Solution"
        
            Options Indexes FollowSymLinks Includes ExecCGI
            AllowOverride All
            Order allow,deny
            Allow from all
            
    
    

提交回复
热议问题