apache(或httpd)怎么设置泛域名解析呢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache(或httpd)怎么设置泛域名解析呢?相关的知识,希望对你有一定的参考价值。
有高手知道 apache 或 httpd 怎么设置泛域名解析吗?貌似apache不支持这样的设置:*.2sitebbs.com那么,它能设置泛域名解析吗?请大侠赐教~
参考技术A 泛解析是需要域名商提供的,如果你想使用泛解析功能需要到域名注册商提供Apache 域名解析
apache 安装路径
/etc/httpd/conf.d/httpd-vhosts.conf
httpd-vhosts.conf 详情况
#端口
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/var/www/html/"
<Directory "/var/www/html/">
Order Deny,Allow
Allow from all
Allow from 127.0.0.1
</Directory>
ErrorLog "logs/error_log"
CustomLog "logs/access_log" combined
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/var/www/html/qq"
ServerName www.qq.com
<Directory "/var/www/html/qq/">
Order Deny,Allow
Allow from all
Allow from 127.0.0.1
</Directory>
ErrorLog "logs/www.qq.com.error_log"
CustomLog "logs/www.qq.com.access_log" combined
</VirtualHost>
以上是关于apache(或httpd)怎么设置泛域名解析呢?的主要内容,如果未能解决你的问题,请参考以下文章
什么是泛解析呢?我想弄个二级域名,就得先弄什么泛解析的,急!