About WordPress地址(URL)
在WordPress的“设置”的“常规选项”中,WordPress地址(URL)存放了博客中所有站点的域名引用。
而它在数据库中的存放位置在数据表“wp_options”中,具体如下:
1 2 3 4 5 6 7 8 9 |
mysql> select * from wp_options where option_name='siteurl'; +-----------+-------------+-------------------------------+----------+ | option_id | option_name | option_value | autoload | +-----------+-------------+-------------------------------+----------+ | 1 | siteurl | http://168.0.1.190/dprototype | yes | +-----------+-------------+-------------------------------+----------+ 1 row in set (0.00 sec) mysql> |
————————————————————————————————
Done。