Why does my page redirect to localhost in my wordpress blog?

前端 未结 5 897
梦毁少年i
梦毁少年i 2020-12-30 05:14

This is my site URL http://www.weblogicsol.com/ , Here I installed a wordpress theme having URL http://www.weblogicsol.com/blog , the problem is this when I

相关标签:
5条回答
  • 2020-12-30 05:49

    Check the Dashboard -> Settings -> WordPress Address (URL), Site Address (URL) There should NOT be 'localhost'

    0 讨论(0)
  • 2020-12-30 05:51

    There are two areas in the WP_OPTIONS that you need to change. One is one the fisrt page and the other one is on the 2nd page.

    This video will definitely help if you have access to phpMyAdmin

    http://educhalk.org/blog/?p=21

    0 讨论(0)
  • you should check wp_options on your database , modify site url dan home as your web domain

    0 讨论(0)
  • 2020-12-30 05:59

    Here is the way. 1. Login to Phpmyadmin 2. select Db 3. goto table "wp_options" 4. change url in siteurl & home.

    its works 100%

    0 讨论(0)
  • 2020-12-30 06:03

    Check your wp-options table and find all occurrence of 'localhost' in option_value field

    http://codex.wordpress.org/Database_Description#Table:_wp_options

    SELECT * from wp_options where option_value like '%localhost%';
    

    and change those to your live URL and you should be set

    Here's a very extensive documentation on migrating wordpress http://codex.wordpress.org/Moving_WordPress

    0 讨论(0)
提交回复
热议问题