服务器上有安装IIS,原来的网站是asp做的,也有别的网站在上面,现在我用PHP做好的网站也放在服务器上去了,不过安装的是APMSERV集成包,商品设为了8080,现在问题是可以使用IP地址直接访问,但是如何来配置域名解析呢??请讲详细些,谢谢!!!

解决方案 »

  1.   

    用apache 虚拟主机.不过端口可能有麻烦....
    等高人.
      

  2.   

    NameVirtualHost *:80
    <VirtualHost *:80>
     ServerName www.123.com
     DocumentRoot "C:/web"
    <Directory "C:/web"> 
     Options FollowSymLinks IncludesNOEXEC Indexes
     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml
     AllowOverride Options FileInfo 
     Order Deny,Allow 
     Allow from all 
    </Directory>
    </VirtualHost>
    网上查询了下...
      

  3.   

    域名解析 那就要在域名的 dns 设置里面.... 我把本机设置了 www.google.com 你通过 这个域名能访问我的电脑么? 当然不能~