centos apache

centos apache虚拟主机


配置文件

/etc/httpd/conf/httpd.conf


虚拟服务器配置

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /var/www/html/
    ServerName dummy-host.example.com
    ErrorLog logs/dummy-host.example.com-error_log
    CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>

若出现页面无权限访问,可能是目录权限问题


DocumentRoot "/root/website"

根目录


<Directory "/root/website">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

权限设置


DirectoryIndex index.html index.html.var

首页文件


LoadModule php5_module modules/libphp5.so
加载php模块


AddType application/x-httpd-php .php
支持.php文件



你可能感兴趣的:(apache)