我已将wordpress内容文件夹wp-content文件夹替换为新文件夹并删除旧文件夹。但是新文件夹重命名为wp-content后,新文件夹无效。我发现很少有来源要求我配置wp- settings.php或wp-config.php,但是进行更改没有用。请有人告诉我更改内容文件夹的确切步骤。
答案 0 :(得分:0)
在进行任何更改之前,请对您的网站进行备份。
打开wp-config.php
并添加:
define ( 'WP_CONTENT_FOLDERNAME', 'your-new-folder-name' );
define ( 'WP_CONTENT_DIR', ABSPATH . WP_CONTENT_FOLDERNAME );
define ( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/' );
define ( 'WP_CONTENT_URL', WP_SITEURL . WP_CONTENT_FOLDERNAME );
此解决方案取自:How to Rename Your WordPress wp-content Directory
注意:我建议不要重命名此文件夹。正如该教程指出的那样,您可能会遇到不遵循最佳做法并手动链接到/wp-content/
的插件。这可能导致插件无法正常运行。
答案 1 :(得分:0)
使用以下代码:
/** Absolute path to the WordPress directory. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
添加:
define (‘WP_CONTENT_FOLDERNAME’, ‘cdnDIR’); // replace cdndir with your custom directory name.
define (‘WP_CONTENT_DIR’, ABSPATH . WP_CONTENT_FOLDERNAME) ;
define(‘WP_SITEURL’, ‘http://’ . $_SERVER['HTTP_HOST'] . ‘/’);
define(‘WP_CONTENT_URL’, WP_SITEURL . WP_CONTENT_FOLDERNAME);
define( ‘WP_ALLOW_MULTISITE’, true );
来源:http://www.tutsapp.com/how-to-change-wp-content-folder-name-wp-content-and-upload-path.html