Diffrent Frontend URL

Home » Snippets » Diffrent Frontend URL
0

Created with:

WP Config Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the web site, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * MySQL settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */


// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'db_username' );
/** MySQL database password */
define( 'DB_PASSWORD', 'db_password' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );


/* Prefix For All Database Tables */
/**
* WordPress database table prefix.

* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';


/* Custom Site URL */
define( 'WP_SITEURL', 'https://site.com' );
define( 'WP_CONTENT_URL', 'https://wp.site.com/wp-content/' );
define( 'WP_PLUGIN_URL', 'https://wp.site.com/plugins' );
define( 'WP_HOME', 'https://wp.site.com/' );
define( 'UPLOADS', 'https://wp.site.com/uploads' );
define( 'COOKIE_DOMAIN', 'https://site.com' );


/**#@+
* Authentication unique keys and salts.
*
* Change these to different unique phrases! You can generate these using
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
* You can change these at any point in time to invalidate all existing cookies.
* This will force all users to have to log in again.
*
* @since 2.6.0
 */
define('AUTH_KEY',         'd =&t_$;e}~HA5iP|S%LU+&h_r[=_W41L-_y&*Od7Is|Q`=:-o~?g3B2MYfZV%i5');
define('SECURE_AUTH_KEY',  '2hsY5]K1G7EB>!PH431/[WNeD,)$&Pe1K7Zfy#<qw^&s.UD9|M%n)*?cT`<5hPNe');
define('LOGGED_IN_KEY',    'Uw|JE>o +gpyWwEOQ~5*whS>&sJB/P|3/^;~wf68-),ETH`<iktKYLm-}3XM,M-^');
define('NONCE_KEY',        'V^o_g+Re>J/,E.{s$8kI9-[!&5Y!TMV}+eT!h6Zu;@Cw<mVm)a~&VOq+_OVaQa+.');
define('AUTH_SALT',        'cc8#cD)|bBL,j-9>_15=l#u|wZ5QPW,kzy~d;k@?ZQ&qKJ@z]uo9h tXt-iA|XS#');
define('SECURE_AUTH_SALT', 'KHhasu_q/:xrdJjSP|1$KqEo|;6d`U19Kf(I@T,dy);W#rYTz=XWgEM7  9MKG{?');
define('LOGGED_IN_SALT',   'd~G*2@?#gl%<=-uE8red_~>.xWeA,ExW~qb[Cx {}T)S#pO3;gdRi.H89Nt+x]:U');
define('NONCE_SALT',       '|)[u<S-hVq*>!kd&8/A@q5B/MknK(T1>36W>zvV0Y6+Js`-}6StoOGvaM A}5O-]');


/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
  define('ABSPATH', __DIR__ . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');

			

Register an account to save your snippets or go Pro to get more features.