dns - How to apply the different Domain Name into one IP and set the default path on apache -


I have a domain name: abc.net mapping on 11.11.11.11 and it works fine and your domain name is www. Registry is .asiaregistry.com I also use AWS EC2 for my service

Q1:? How to install www.abc.net or aaa.abc.net to work with DNS for internet user access

Q2: After Q1 is set, can it be possible that my Can Apache server be fixed in the following way? Or does it require another server to handle every IP?

  1. aaa.abc .net to 11.11.11.11/mobile

  2. www.abc.net 11.11.11.11/PC

  3. bbb.abc .net to 11.11.11.11/mgmt

Thanks for your time

What is your real domain? This can help you answer your question more effectively.

You will need to configure the nameserver for your zone, your registrar might provide a set of official name servers, so that you have at least one NS record zone

Once you have the name 'abc.net', you can add a record for www.abc.net (your registry probably provides a way to edit this area) .

If you have a record for www.abc.net, then it means to include a CNAME record for each other that you want to send to the same IP address. A CNAME simply states that the answer to the hostname is a valid name instead of a real IP address.


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -