web-dev-qa-db-ja.com

アクセス禁止! Apacheのエラー403

OpenSUSE12.2でApacheサーバーを構成しようとしています。私はここのマニュアルに示されているようにやっています http://en.opensuse.org/SDB:Linux_Apache_MySQL_PHP それはうまくいきます。 localhost/〜myuser/website/html/index.htmlにアクセスしようとすると、次のメッセージが表示されます。

Access forbidden!

You don't have permission to access the requested object. It is either read-protected or not readable by the server. 

If you think this is a server error, please contact the webmaster.

Error 403

これを修正する方法はありますか?

2
animatora

ファイルとフォルダーの所有者をApacheの所有者に変更します。解決されるはずです。コマンドは次のようになります:

Sudo chown Apache-user:Apache-group ~myuser/website/html/ -R

また、フォルダのアクセス許可を755に変更します

Sudo chmod 755 ~myuser/website/html/ -R
1
Babar