1// Add to top of wp-config.php
2define( 'WP_HOME', 'http://example.com' );
3define( 'WP_SITEURL', 'http://example.com' );
1options table
21. siteurl
32. home
4
5######## OR ########
6
7// Add to top of wp-config.php
8define( 'WP_HOME', 'http://example.com' );
9define( 'WP_SITEURL', 'http://example.com' );
10
1<?php
2update_option( 'siteurl', 'http://example.com' );
3update_option( 'home', 'http://example.com' );
4