Life is fantastic

Life

解决wp站绝对路径问题

56
2020-12-28

之前,在上线wp站时,我们解决路径问题的方法是使用强大的cv大法,然而随着采集站的上线率越来越高,已经疲于cv大法的我发现一套简单的方法解决wp的路径问题。
1,针对刚刚安装的wp站,我们只需要做两步:
1>修改wordpress根目录下的wp-config.php,这个文件只有在安装好wordpress之后才会出现,在该文件中加入一下四行
$home = 'http://'.$_SERVER['HTTP_HOST'];
$siteurl ='http://'.$_SERVER['HTTP_HOST'];
define('WP_HOME', $home);
define('WP_SITEURL', $siteurl);
这样,我们不需要修改options文件,就可以正常访问网站了
2>打开wp-includes/post.php文件,修改函数wp_get_attachment_url为如下代码:
function wp_get_attachment_url( $post_id =0 ) {
$file_dir=dirname(__FILE__);
$server_root=$_SERVER[DOCUMENT_ROOT];
$file_dir=substr($file_dir,strlen($server_root));
$file_dir=substr($file_dir,0,-12);
if($file_dir!=''){
$file_dir='/'.substr($file_dir,1);
}

$post_id = (int) $post_id;
if ( !$post =& get_post( $post_id ) )
return false;

$url = '';
if ( $file = get_post_meta( $post->ID,'_wp_attached_file', true) ) { //Get attached file
if ( ($uploads = wp_upload_dir())&& false === $uploads['error'] ) { //Get upload directory
if ( 0 === strpos($file,$uploads['basedir']) ) //Check that the upload base exists in the file location
//$url = str_replace($uploads['basedir'],$uploads['baseurl'], $file); //replace file location with url location
$url=$file_dir."/wp-content/uploads/".$file;
elseif ( false !== strpos($file, 'wp-content/uploads'))
//$url = $uploads['baseurl'] . substr($file, strpos($file, 'wp-content/uploads') + 18 );
$url=$file_dir."/wp-content/uploads/".$file;
else
//$url = $uploads['baseurl'] ."/$file"; //Its a newly uploaded file, therefor $file is relative tothe basedir.
$url=$file_dir."/wp-content/uploads/".$file;
}
}
if ( empty($url) ) //If any of the aboveoptions failed, Fallback on the GUID as used pre-2.7, not recomended to relyupon this.
$url = get_the_guid( $post->ID );
if ( 'attachment' != $post->post_type|| empty($url) )
return false;
return apply_filters('wp_get_attachment_url', $url, $post->ID );
}
如果是刚安装的wp,没有添加page,category这个方法就可以将我们的wp站的绝对路径问题解决掉。但是如果我们相用之前做好的wp模板上线网站,却又懒于频繁使用cv大发。那接下来的一部比较关键了。
对于已经建好的站,我们也要做好前两步。接下来的问题就是我们的图片调取问题。通过网页的审查元素,我们会看到,此时不能显示的图片大多藏在我们的post里,此时,我们只需要打开数据库,找到wp_posts表,使用“UPDATE wp_posts SET post_content = REPLACE (post_content,
'http://调用的错误域名/wp-content/uploads','/wp-content/uploads')”替换成相对路径就好了。替换之后的数据库模板你就可以随便用啦。
这样,我们不需要打开备份的数据库使用cv大法了,当然,也许你觉得这样复杂,但我觉得简单多了。。。该方法暂时行得通,如果以后遇到什么问题,请大家指出。

  • 0