Disable direct access via static IP address to my website

0

Hi,

I have an AWS lightsail instance and now I can access to my website via domain and static IP address. I want to disable access to my website via IP address and keep access via domain name. Please, could you help me how can I do that?

Thanks in Advance

已提問 2 年前檢視次數 244 次
1 個回答
1

Edit: Corrected the answer so that it actually makes sense.

When a HTTP/HTTPS request is made to your web server, one of the headers passed is Host. If someone is using a browser and types http://www.example.com/ then you'll see www.example.com in the Host header. If they type http://1.2.3.4 then you'll see 1.2.3.4.

So what you can do is configure your web server only to serve up your website when the Host header is your domain name. What you'd also generally do is configure it to serve a static page (which could be blank, it could show an error, it could be any HTML) for people accessing the web server with any other hostname.

It depends on which web server software you're using, but for example: with Apache you'd configured this using the VirtualHost directive.

profile pictureAWS
專家
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南