APACHE2_改变默认索引风格

刘大尉 于 2024-01-03 发布

WEB SERVER MOD

Offical Document. 👉 Apache Module mod_autoindex

由 mod_autoindex 模块自动配置索引文件,阅读官方文档可知,由使用基本的命令来配置。 在 /etc/apache2/apche2.conf 来配置。

<Directory />
    # 默认配置
	Options FollowSymLinks
	
	# 插入样式表(使用服务器的样式表来改变,默认很丑陋的索引样式。)
	IndexHeadInsert "<link rel=\"stylesheet\" href=\"/base/css/css.css\">"
	# 删除底部文字(使用空 HTML 文件代替底部行文字。)
	ReadmeName /base/README.html

	# 隐藏地基(隐藏基本CSS/JS 等需要隐藏的文件,例如 Favicon.ico)
	IndexIgnore /base
 	IndexIgnore favicon.ico
	IndexIgnore trojan
	# HeaderName /base/HEADER.html

	AllowOverride None
	Require all denied
</Directory>