wordpress添加自定义上传附件类型添加rar支持

在wp-includes/functions.php文件中查找application/zip,在“// openoffice formats”这行的上面加上

'rar' => 'application/rar',

其它解决办法

方法1:使用winrar压缩的时候“压缩文件格式”选择为zip。

方法2:直接禁用文件类型检测,在wp-config.php文件中,添加这样一句代码

define(‘ALLOW_UNFILTERED_UPLOADS’,true);

相关文章:

  • 2021-10-11
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2021-07-11
  • 2022-12-23
  • 2021-05-08
  • 2022-02-20
猜你喜欢
  • 2021-11-03
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2021-11-14
相关资源
相似解决方案