无法在“常规设置”页面更改默认URL

时间:2011-06-16 作者:eddywebs

好的,我的博客默认URL在“常规设置”处变灰,无法再更改博客的URL。当前值为“http://blog.financialcoachshow.com/blueocean/institutional“”

screenshot link

我知道,当您在wp配置中自定义了站点/博客url时,就会发生这种情况。php文件,但是我在wp config中定义了以下内容。php

define (\'WPLANG\', \'\');
define(\'WP_HOME\',\'http://www.blueoceanportfolios.com/company\');
define(\'WP_SITEURL\',\'http://www.blueoceanportfolios.com/company\');
而我希望在“常规设置”blueoceanportolios上有SiteUrl/博客url。如上定义的com/公司,它被锁定到http://blog.financialcoachshow.com/blueocean/institutional

造成这种价值冲突的可能原因还有什么?

1 个回复
SO网友:two7s_clash

在里面functions.php 查找以下行

update_option(\'siteurl\',\'http://blog.financialcoachshow.com/blueocean/institutional\');
update_option(\'home\',\'http://blog.financialcoachshow.com/blueocean/institutional\');
删除它们!

结束

相关推荐