由于请求正在发送到blogspot服务器,因此没有。htaccess不会。
你可以filter your post content 输出:
add_filter(\'the_content\', function($the_content) {
return str_replace(\'/s400\',\'/s1600\',$the_content);
});
或者您可以编辑
modify the databaseglobal $wpdb;
$wpdb->query("UPDATE $wpdb->posts SET `post_content` = REPLACE(`post_content`,\'/s400\',\'/s1600\');");
或者在mysql中执行
UPDATE wp_posts SET `post_content` = REPLACE(`post_content`,\'/s400\',\'/s1600\';
假设
wp_posts
是您的posts表。
或者你可以使用wpcli
wp search-replace \'/s400\' \'/s1600\'
如果您使用任何一种方法修改数据库,请确保始终先备份数据库。
(在其他人拒绝我的回答之前,请注意,我所提供的是对你的问题的回答,但这是对真正问题的解决办法:图像不在Wordpress中,可能应该在Wordpress中。