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',         'Fgey}4,(rR=y~JNFhIjh{O3{HY&uyasIi#&skCI;M*TB`=9|Ncjzkr3YmnyKAT=v');
define('SECURE_AUTH_KEY',  '>wM_2}kNu:<}+rbVJ`d@{^:!e,{4Y+Sp 8l<IS8XS,C_uNCJ-cc&U,3W2Z7T,I7O');
define('LOGGED_IN_KEY',    'hf)=0|3TOdpg+-fv|h#mktx-K87q!JY(|ic&xG-=< ZB/=Uxp258<5gA$d LaV?l');
define('NONCE_KEY',        '$)25SbL4Dubb-59![!S})5%X-!OLSWWkf&/61)oo0g _R-J)]_Dq(<wfa0S>Q7Y+');
define('AUTH_SALT',        'NWV-OD~xNHXz7p~^ef>(e>E;7s1b~0#tch/`&9^-(*DCk9e)|-H~;h(,(A6xgL9t');
define('SECURE_AUTH_SALT', 'OQ}3.N(}kEv8jm#|.)a+O|)*;UG?^nS(nfQWO8#.Q4$DN+!jIHbc:a{b;SHuZ;OA');
define('LOGGED_IN_SALT',   'cC::)dp%s~9+_kM0zD-O~FRj1R%5g#GJsr;*^rIA>~D!,8[0E?/Pi#w{>icYWQ+|');
define('NONCE_SALT',       ' x--&qI^)%y`SWX(RL3MOC.tN|^*TdL~B1<EEA80w[#-lpox[}VIN@1}G0A+F=;r');


/* 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.