Skip to content

Apache(httpd)

安装服务

shell
yum install -y httpd

配置

shell
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.backup
vi /etc/httpd/conf/httpd.conf
# 将 AllowOverride 修改为 All

将 AllowOverride 修改为 All

允许网站管理员在不需要修改主服务器配置文件的情况下,通过.htaccess文件对网站的配置进行微调。

txt
<Directory />
    Options FollowSymLinks
    AllowOverride Node
    AllowOverride All
</Directory>

修改 DocumentRoot

txt
#DocumentRoot "/var/www/html"
DocumentRoot "/var/www/html/ecshop"