将域的子路径从EC2重定向到IP地址

时间:2018-06-15 09:58:43

标签: apache nginx amazon-ec2

EC2 Server 1 :我在此服务器上安装了Nginx,配置文件如下:

 server {
    listen 443;
    server_name sub.example.com;
    root /var/www/html;
    location ~ ^/something {
            rewrite ^(.*) http://<IP_ADDRESS> permanent;
    }
 }

EC2 Server 2 :我已在此服务器上安装了Apache和PHP。此服务器的弹性IP地址为http://<IP_ADDRESS>

目前,当我转到https://sub.example.com/something时,它会将我重定向到Server 2内容,这对我来说非常适合。但是在这里,我在地址栏上看到的网址会更改为IP地址: -

i.e. https://sub.example.com/something ---> http://<IP_ADDRESS>

我希望用户被重定向,因为它已经实现,但地址栏中的url保持不变。

注意:我还没有在服务器2中进行任何配置

0 个答案:

没有答案