diff options
Diffstat (limited to 'wp-config.example.php')
-rw-r--r-- | wp-config.example.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/wp-config.example.php b/wp-config.example.php index 6f6f9b4..efb0ca0 100644 --- a/wp-config.example.php +++ b/wp-config.example.php @@ -2,7 +2,8 @@ define('WP_ENVIRONMENT_TYPE', 'production'); -#define('WP_HOME', 'http://localhost'); +define('WP_HOME', 'http://localhost'); +define('WP_SITEURL', WP_HOME . '/wp'); define('DB_NAME', 'database_name_here'); define('DB_USER', 'username_here'); @@ -21,6 +22,9 @@ define('SECURE_AUTH_SALT', 'put your unique phrase here'); define('LOGGED_IN_SALT', 'put your unique phrase here'); define('NONCE_SALT', 'put your unique phrase here'); +define('CONTENT_DIR', 'wp-content'); +define('WP_CONTENT_URL', WP_HOME . '/' . CONTENT_DIR); + define('DISALLOW_FILE_EDIT', true); define('WP_POST_REVISIONS', -1); define('EMPTY_TRASH_DAYS', 3650); |