Last active
January 12, 2016 20:06
-
-
Save benklocek/4068691 to your computer and use it in GitHub Desktop.
Wordpress Config: Local to remote Constant definition
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] ); | |
define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] ); | |
define( 'WP_CONTENT_URL', 'http://' . $_SERVER['HTTP_HOST'] . '/wp-content' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment