Skip to content

Instantly share code, notes, and snippets.

@backroot
Created October 16, 2019 18:44
Show Gist options
  • Save backroot/ca618c899d01bfeb999ffd1e851f49ac to your computer and use it in GitHub Desktop.
Save backroot/ca618c899d01bfeb999ffd1e851f49ac to your computer and use it in GitHub Desktop.
Wordpress サイトURL変更
mysql> update wp_options set option_value = 'http://localhost:8000' where option_name = 'home';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> update wp_options set option_value = 'http://localhost:8000' where option_name = 'siteurl';
Query OK, 1 row affected (0.04 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment