52037317 发表于 2017-3-30 09:29:27

PHP 配置项目上下文

打开httpd.conf文件,在里面加入

Alias    /newppg/   "F:/project/phpPro/newppg/"

再输入 http://localhost/newppg/ 访问,发现提示:
Forbidden
You don't have permission to access /newppg/on this server.
http://www.bt170.cn BT下载 电影下载 BT一起来

那是控制权限问题,接着下面做

# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>这里改成
<Directory />
    Options Indexes FollowSymLinks
    AllowOverride None
</Directory>


问题解决

http://www.bt170.cn BT下载 电影下载 BT一起来
页: [1]
查看完整版本: PHP 配置项目上下文