logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Question regarding path issues
Author
kingdm



Joined: 19 Jul 2011
Posts: 2

PostPosted: Tue 19 Jul '11 7:42    Post subject: Question regarding path issues Reply with quote

Hi,

My friend and I work on a similar project. He work on a Mac environment while me in Windows. We came up in some issue, I am wondering what is the equivalent path of this in Windows Apache:

Code:
Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options -Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

Any insights? Thanks.
Back to top
glsmith
Moderator


Joined: 16 Oct 2007
Posts: 2268
Location: Sun Diego, USA

PostPosted: Tue 19 Jul '11 7:53    Post subject: Reply with quote

Well, if Apache is on the C drive, then it would be

c:/usr/share/doc
Back to top
kingdm



Joined: 19 Jul 2011
Posts: 2

PostPosted: Tue 19 Jul '11 9:27    Post subject: Reply with quote

glsmith wrote:
Well, if Apache is on the C drive, then it would be

c:/usr/share/doc


Do I need to include the Apache installation path or just simply the one you posted?

Thanks.
Back to top
glsmith
Moderator


Joined: 16 Oct 2007
Posts: 2268
Location: Sun Diego, USA

PostPosted: Wed 20 Jul '11 0:00    Post subject: Reply with quote

Just the one I posted. Of course, C:/usr/share/doc/ must exists, and the content you want accessible from http://yourdomain.com/doc/ must exist in that location
Back to top


Reply to topic   Topic: Question regarding path issues View previous topic :: View next topic
Post new topic   Forum Index -> Apache