打开 engine/classes/download.class.php
查找

header( ‘Content-Disposition: attachment; filename=”‘ . $this->properties[‘new_name’] . ‘”‘ );

大概在86行左右
替换为

header( ‘Content-Disposition: attachment; filename=”[Aio.WiKi]’ . $this->properties[‘new_name’] . ‘”‘ );

其中 [Aio.WiKi] 会自动添加到附件名字前
另一种玩法是把这里变为字段,后台可以单独控制每个附件的下载前缀,但是没必要,增加MySql负担了