Created
October 16, 2019 18:44
-
-
Save backroot/ca618c899d01bfeb999ffd1e851f49ac to your computer and use it in GitHub Desktop.
Wordpress サイトURL変更
This file contains hidden or 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
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