admin管理员组

文章数量:1312769

While trying to move the wp-content to new folder, there is constant called WP_CONTENT_URL.

Why do we need this one? Does WP_CONTENT_DIR and WP_CONTENT_URL needs to be same?

Bcoz there are several websites which can find my wordpress themes and plugins. how do they do that?

I am trying to move move my wp-content folder so added this code in wp-config.php just above require_once( ABSPATH . 'wp-settings.php' );

define('WP_CONTENT_DIR', dirname(__FILE__) . 'server/stuffs'); define('WP_CONTENT_URL', 'https://' . $_SERVER['HTTP_HOST'] . 'server/stuffs' );

But it causes Internal server error, when I trying to access my admin page

Thanks in Advance!!

While trying to move the wp-content to new folder, there is constant called WP_CONTENT_URL.

Why do we need this one? Does WP_CONTENT_DIR and WP_CONTENT_URL needs to be same?

Bcoz there are several websites which can find my wordpress themes and plugins. how do they do that?

I am trying to move move my wp-content folder so added this code in wp-config.php just above require_once( ABSPATH . 'wp-settings.php' );

define('WP_CONTENT_DIR', dirname(__FILE__) . 'server/stuffs'); define('WP_CONTENT_URL', 'https://' . $_SERVER['HTTP_HOST'] . 'server/stuffs' );

But it causes Internal server error, when I trying to access my admin page

Thanks in Advance!!

Share Improve this question edited Aug 23, 2019 at 14:47 Naveen asked Aug 23, 2019 at 13:54 NaveenNaveen 11 silver badge3 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

https://developer.wordpress/reference/functions/content_url/ the guide may helfull to you to undestood the purpose of it

本文标签: pluginsWhat is the purpose of WPCONTENTURL