amazon aws redhat linux配置php 环境


apache默认主页地址 ....../apache/htdocs/index.html

apache重新启动命令:
/usr/local/apache2/bin/apachectl restart 重启


10、修改默认的Web站点目录

    默认的目录为  "/usr/local/apache2/htdocs",修改apache的配置文件httpd.conf,比如在新建一个 /home/gyw/WebSite的目录作为apache的站点目录

    找到DocumentRoot这一行修改为:DocumentRoot "/home/gyw/WebSite"

  找到 这一行修改为: 

测试:修改到文件夹出现错误:

“You don't have permission to access /index.html on this server.”

解决方法:

更改文件权限;chmod 755 index.html

打开apache配置文件httpd.conf,找到这么一段:

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    deny from all
    Satisfy all


你可能感兴趣的:(amazon aws redhat linux配置php 环境)