워드프레스 컨텐츠 디렉토리(wp-content)로 이동할 수 없습니다.


wp-config.php 에서 하단에 빨간 코드를 추가하면 된다.

 

[php]

/** Absolute path to the WordPress directory. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);

[/php]

 

[php]
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);
[/php]

[php]
if(is_admin()) {
add_filter(‘filesystem_method’, create_function(‘$a’, ‘return "direct";’ ));
define( ‘FS_CHMOD_DIR’, 0751 );</span>
}
[/php]


답글 남기기

이메일 주소는 공개되지 않습니다.