简体   繁体   English

基于XAMPP的服务器中的名称服务器设置?

[英]Name server setup in XAMPP based server?

I want to setup the apache virtual host in my server 我想在我的服务器中设置apache虚拟主机

My registered Domain name is www.abcd.com 我的注册域名是www.abcd.com

Name server1: NS1.ABCD.COM 名称server1:NS1.ABCD.COM

Name server2: NS2.ABCD.COM 名称server2:NS2.ABCD.COM

My static ip: 112.123.124.195 我的静态IP:112.123.124.195

I can access my website from the static ip address shown above, but now want to setup the vhost file to access this server from the www.abcd.com 我可以从上面显示的静态IP地址访问我的网站,但现在想要设置vhost文件以从www.abcd.com访问此服务器

My current virtual host file is as following. 我当前的虚拟主机文件如下。 Please help me to set up this file for accessing from the registered domain. 请帮我设置此文件以便从注册域访问。

enter code here
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
##NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
##<VirtualHost *:80>
    ##ServerAdmin postmaster@dummy-host.localhost
    ##DocumentRoot "G:/xampp/htdocs/dummy-host.localhost"
    ##ServerName dummy-host.localhost
    ##ServerAlias www.dummy-host.localhost
    ##ErrorLog "logs/dummy-host.localhost-error.log"
    ##CustomLog "logs/dummy-host.localhost-access.log" combined
##</VirtualHost>

##<VirtualHost *:80>
    ##ServerAdmin postmaster@dummy-host2.localhost
    ##DocumentRoot "G:/xampp/htdocs/dummy-host2.localhost"
    ##ServerName dummy-host2.localhost
    ##ServerAlias www.dummy-host2.localhost
    ##ErrorLog "logs/dummy-host2.localhost-error.log"
    ##CustomLog "logs/dummy-host2.localhost-access.log" combined
##</VirtualHost>

enter code here

you could put something like this in your httpd-vhosts.conf 你可以把这样的东西放在你的httpd-vhosts.conf中

<VirtualHost 210.212.143.195>
    ServerName www.abcd.com
    ServerAlias abcd.com   
    ServerAdmin webmaster@localhost
    DocumentRoot the/root/to your/webfolder
    ServerName example.com

    <Directory "the/root/to your/webfolder">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        order allow,deny
        allow from all
    </Directory>
</VirtualHost>

than you should include in your windows host file (windows/system32/drivers/etc/hosts) If you want under localhost 比你应该包含在你的Windows主机文件(windows / system32 / drivers / etc / hosts)中如果你想在localhost下

 210.212.143.195 www.abcd.com

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM