1

首先,我查看了这个页面 [ Apache localhost 403 error with Yosemite因为这个人似乎和我有同样的问题。我尝试了不同的东西,但它对我不起作用。当我在我的 url 中写 localhost 时,我收到一个403 Forbidden "You don't have permission to access / on this server". 对不起,我是初学者。我真的不知道你需要知道什么样的信息来帮助我解决这个问题。

我的目录 /Users/schan/Sites/ 我的 user.conf (schan.conf) 是

<Directory "/Users/schan/Sites/">
  Options Indexes MultiViews
  AllowOverride All
  Require all granted
</Directory>

我的 httpd.conf(如果您需要更多信息,请告诉我一些信息)

# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/Users/schan/Sites"
<Directory "/Users/schan/Sites">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options FollowSymLinks Multiviews
    MultiviewsMatch Any

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

#
# Controls who can get stuff from this server.
#
Require all granted

4

1 回答 1

2

如果您在 url 中写入“localhost”,则在 yosemite 上会调用以下目录:/Library/WebServer/Documents/ 这与 /Users/schan/Sites 不同,您可以使用以下方式调用 /Users/schan/Sites:

http://localhost/~schan

在我的优胜美地的“本地主机”上出现 403,如果我从文档文件夹中删除读取权限,它应该是 644,或者在 Finder 信息中它会说

System    read and write
wheel     read only
everyone  read only

对于设置本地用户,我发现此链接最有用且最完整:http ://coolestguidesontheplanet.com/get-apache-mysql-php-phpmyadmin-working-osx-10-10-yosemite/

于 2014-11-16T08:07:26.060 回答