".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
近日有通过美国主机侦探来咨询WordPress网站搬家后怎样更换域名的问题。因为将WordPress网站搬家到新空间并解析新的域名后,会发现网站上还存在以前的域名。针对这个问题小编整理了以下两个有效的方法,分享给大家。
**一、通过数据库更新域名**
打开新空间的控制面板(如GoDaddy主机的是[cPanel面板](https://www.idcspy.com/cpanel.html "cPanel面板")),进入数据库后台“phpMyAdmin”,点开导入数据的数据库,然后点击右侧选项卡的“SQL”(如下图),输入以下SQL语句,然后执行更新即可:
![进入数据库后台](https://www.idcspy.com/sites/default/files/2017073100.jpg)
SQL语句:
UPDATE wp\_options SET option\_value = replace( option\_value, ‘旧域名’, ‘新域名’ ) WHERE option\_name = ‘home’ OR option\_name = ‘siteurl’;
UPDATE wp\_posts SET post\_content = replace( post\_content, ‘旧域名’, ‘新域名’ ) ;
UPDATE wp\_posts SET guid = replace( guid, ‘旧域名’, ‘新域名’ ) ;
注意:上面的“旧域名”和“新域名”替换成自己的域名即可。
**二、通过插件更新域名**
WordPress强大之处就在于插件太丰富了,可以实现各类功能,包括这里的WordPress网站更新域名问题。我们可以在WordPress后台搜索“Velvet Blues Update URLs”插件,安装启用。
启用后,在后台-工具菜单里可以看到Update URLs选项,点击进入插件设置面板。第一步在Old URL里填写老的域名,在New URL里填写新的域名,然后在“Choose which URLs should be updated”选择要更新的位置后,点击“Update URLs Now”更新即可。
![WordPress网站后台](https://www.idcspy.com/sites/default/files/2017073101.jpg)
更新完成后,在进入后台-设置-常规里面,看看WordPress地址和站点地址是否是新的域名,如果不是也要替换成新的域名。
以上就是WordPress网站搬家后更新域名的两种方法,小编亲测有效,希望对大家有帮助。
**推荐阅读:**
[备份WordPress网站数据步骤](/#)
[WordPress网站出现403 Forbidden错误的解决方法](/#)
[WordPress外贸网站利用WooCommerce批量上传产品的方法](/#)
[WordPress上传图片出现HTTP错误的解决办法](/#)"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/107930.html