dnsドメイン解析の応用
1751 ワード
このような必要があります。主なドメイン名www.test.comがあります。他の人に二級ドメイン名を申請して、xxx.test.comと似たようなものを使ってもいいです。
この不確定な二次ドメインの場合には、ドメイン名解析のための技術が使用され得る。
ドメイン名解析は、dnsでは新しいレコードを追加します。
*:汎解析、他のすべてのドメイン名に一致する*.test.com
その後、nginxで設定します。
[作者メールボックス][email protected]
[作者QQ]190678908
【ブログ】 http://blog.csdn.net/newjueqi
http://blog.sina.com.cn/h6k65
この不確定な二次ドメインの場合には、ドメイン名解析のための技術が使用され得る。
ドメイン名解析は、dnsでは新しいレコードを追加します。
*:汎解析、他のすべてのドメイン名に一致する*.test.com
その後、nginxで設定します。
server {
listen 80; ## listen for ipv4; this line is default and implied
root /var/www/test;
index index.php index.html index.htm;
server_name *.suntenart.com;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
if ( $http_host ~* "^(.*?)\.suntenart\.com$")
{
set $domain $1;
}
location / {
if ($domain !~* ^www$)
{
rewrite ^/(.*) /$domain break;
}
}
}
[文章の作者]曾健生[作者メールボックス][email protected]
[作者QQ]190678908
【ブログ】 http://blog.csdn.net/newjueqi
http://blog.sina.com.cn/h6k65