将wordpress网址重定向到localhost

时间:2019-07-18 00:46:51

标签: wordpress nginx

我有一个部署的wordpress网站在登台环境中实时运行。我正在尝试使用登台数据库中的测试数据为开发人员设置本地环境。

我已经在登台环境中导出了Mysql DB数据,并使用该数据导入了本地开发环境DB。

一切正常,除了存储在数据库表中的链接都指向登台(https://www.staging.com/.../

我不想在db_export.sql文件中为所有URL进行字符串替换,而是在Nginx服务器上为所有http(s)://www.staging/.../-> localhost:80/.../

这是我当前在Nginx服务器上的配置

server {
    listen 80;
    server_name 127.0.0.1;

    root /var/www/html;
    index index.php;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    location / {
        try_files $uri $uri/ /index.php?$args;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass wordpress:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}

我尝试在其中添加以下内容

server {
    server_name www.staging.com;

    location ~ \.php$ {
        proxy_pass http://127.0.0.1:80;
    }
}

但是它没有用,当浏览到localhost/wp-admin时,我会得到https://www.staging.com/wp-admin

0 个答案:

没有答案