Apache-2.2

Apache 403 - 在父目錄的父目錄中查找 .htaccess

  • June 22, 2012

我有這個問題(apache2,ubuntu 12.04)

我已將我的所有站點都放在 /home/username/vhosts 文件夾中我已將 home 權限和使用者名添加為 x 和 vhosts 上的 chmod -r 777 添加 /etc/hosts 以使用所需名稱訪問我的站點 a2enmod 是否重寫

但我仍然有這個錯誤:

[Sat Jun 23 00:05:23 2012] [crit] [client 127.0.0.1] (13)Permission denied: /home/username/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

為什麼不可讀?我做了

sudo -s
su - www-data

並且我可以正確列出 /home/username 目錄

我或apache有什麼問題?

檢查 apache 是否可以訪問 (+x) /home、/home/user 和 /home/user/vhost 文件夾,因為它通常會檢查樹下的 .htaccess。

我猜 .htaccess 文件的權限不正確試試

chmod +r /home/username/.htaccess

引用自:https://serverfault.com/questions/401452