Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Strange error. Was trying to figure out why a virtual host was not working using a setup I've used a hundred times.

    DocumentRoot "/var/htdocs/directory-name/"
    <Directory "/var/htdocs/directory-name/">

Gave me a 403 error no matter what I tried

    DocumentRoot "/var/htdocs/directoryname/"
    <Directory "/var/htdocs/directoryname/">

Did not. Has anyone else ever experienced this? I didn't paste the entire virtual host entry, but this was the only difference between what worked and what gave me a 403. I'm totally bewildered.

share|improve this question
I think in this case, seeing the actual path would be helpful or even necessary – Pekka 웃 Feb 1 '11 at 18:08
I'm seeing this and it's driving me insane. The issue for me is with a ServerName having a hyphen in it www.our-site.com – Ray Mar 26 '12 at 17:00

1 Answer

This should work if you have a physical folder "directory-name" at "/var/htdocs". Could be some unrelated problem otherwise.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.