有人能告诉我如何在不触及WordPress中的wp-config.php的情况下更改上传目录吗?
答案 0 :(得分:0)
你需要进入wp-config.php并设置上传路径: define('UPLOADS','wp-content /'。'files');
如果你想在wp-content之外的上传目录,你需要在wp-config.php中设置上传路径,如下所示: define('UPLOADS',''。'files');
答案 1 :(得分:0)
对于同样的问题,我使用了本手册link
希望它对你有所帮助
答案 2 :(得分:0)
假设你上传了一张照片。上传后,您可以查看以下内容:
example.org/wp-content/uploads/2014/12/picture.png
我们假设您现在通过以下方式更改上传文件夹位置:
现在您需要更改wp-config.php
define('UPLOADS', 'wp-content/media');
这会给你URL
这样的:
example.org/wp-content/media/2014/12/picture.png
希望这会有所帮助!