我试图将我的wordpress网站从本地xampp,Windows计算机移至ubuntu服务器。
我尝试从xampp面板导出数据库。将所有wordpress文件移至apache目录并导入数据库。本文中使用的部分: https://blog.templatetoaster.com/move-wordpress-localhost-to-live-server/ 将网址更改为当前服务器。
UPDATE wp_posts SET post_content = REPLACE(post_content,'http://127.0.0.1/directory','http://server_ip/directory'); UPDATE wp_options SET option_value ='http://server_ip/directory'WHERE option_name ='home'; 更新wp_options SET option_value ='http://server_ip/directory'在哪里option_name ='siteurl';
站点上的所有图像均应正常工作,并且所有页面均可以正常工作,但只有主页和管理员有效,但是当我尝试单击其他页面时出现错误: “在此服务器上找不到请求的URL / directory / page1 /。” 而且所有图像都不会显示。