经常使用的Apache配置文件位置总结

请确认DocumentRoot。

在httpd.conf文件中存在DocumentRoot。

/etc/httpd/conf/httpd.conf:
/etc/httpd/conf/httpd.conf文件

错误日志的位置

/var/log/httpd/error_log的内容减少

访问日志的位置

/var/log/httpd/access_log

/var/log/httpd/access_log

.htaccess配置

.htaccess可以在httpd.conf中进行设置。

<Directory />
~中略~
AllowOverride None
~中略~
</Directory>


<Directory />
~中略~
AllowOverride All
~中略~
</Directory>

参考网址:https://www.be-webdesigner.com/technotes/server/httpd_conf/htaccess.htm