Nothing to do, see settings-the general has a WordPress address (URL) and site address (URL), the hand of the two address behind the/wordpress suffix removed, resulting in blog background can not login, the article page layout confusion.
Workaround:
Linux into MySQL
Mysql> show databases; #Show which databases are available
Mysql> use wordpress; #select database using wordpress
Mysql> show tables; #Show which tables are available
Select * from wp_options limit 0,5 ; #Query the contents of the wp_options table, and only view the first 5 lines
Update wp_options set option_value="http://www.zhaoyongtao.top/wordpress" where option_name="siteurl";
Update wp_options set option_value="http://www.zhaoyongtao.top/wordpress" where option_name="home";
You can access it if you change it.
This article is from the "Tao Sound Still" blog, please make sure to keep this source http://zhaoyongtao.blog.51cto.com/10955972/1764381
Modifying the WordPress address (URL) prevents you from logging into the background