1

I have added an alias in the httpd.conf file to access my folder at localhost/projects :

<IfModule alias_module>

    Alias /projects "C:/Users/Ben/Google Drive/Projects"

    <Directory "C:/Users/Ben/Google Drive/Projects">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted
    </Directory>

    ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"

</IfModule>

When I try to start Apache in XAMPP 3.2.1 nothing is written to the error.log and Apache fails to start.

Ben
  • 2,122
  • 2
  • 28
  • 48
  • Where did you download XAMPP? It's still in [version](https://www.apachefriends.org/download.html) [1.8.3](http://en.wikipedia.org/wiki/XAMPP). How did you get version 3.2.1 ? – kums Oct 29 '14 at 06:33
  • 1
    Pretty sure he is referring to the version number displayed in the control panel window. – oomlaut Oct 29 '14 at 19:46
  • Yes I am referring to the version number displayed in the control panel. So the latest version of XAMPP 1.8.3 – Ben Oct 30 '14 at 03:15

1 Answers1

11

File: httpd.conf (original)

After of:

# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.

Put:

<Directory "C:/Users/Ben/Google Drive/Projects">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Require all granted
</Directory>

Alias /projects "C:/Users/Ben/Google Drive/Projects"
Danilo Tostes
  • 126
  • 2
  • 4