地址更改后更新URL路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了地址更改后更新URL路径相关的知识,希望对你有一定的参考价值。

If the official codex approach (http://codex.wordpress.org/Changing_The_Site_URL) is causing you problems, give this a try. Be sure to change the constant declarations and modify table names as necessary for your instance. Confirmed working with WP v3.4.
  1. SET @current_path='site.dev.example.com',
  2. @new_path='site.stage.example.com';
  3.  
  4. UPDATE wp_posts SET post_content = REPLACE(post_content, @current_path, @new_path);
  5. UPDATE wp_posts SET guid = REPLACE(guid, @current_path, @new_path);
  6. UPDATE wp_options SET option_value = REPLACE(option_value, @current_path, @new_path);
  7. UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, @current_path, @new_path);

以上是关于地址更改后更新URL路径的主要内容,如果未能解决你的问题,请参考以下文章

根据图片的url地址下载图片到本地保存代码片段

从 AngularJS url 中删除片段标识符(# 符号)

结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url

配置更改后片段丢失过渡动画

InfoWindow中的Android Google地图摘要自动更新

动态更改组件,但地址栏上显示相同的URL