apache设置默认跳转域名

apache配置webserver。如果想让所有未解析二级域名,如abc.domain.com 统一跳转到某一个固定域名下。

<VirtualHost *>

        ServerAlias *.domain.com

        #DocumentRoot /data/webapp/empty/

        <Location />

            RewriteEngine On

            RewriteCond %{SERVER_PORT} 80

            RewriteRule ^(.*)$ https://www.domain.com/$1 [R,L]

        </Location>

</VirtualHost>

发表评论

邮箱地址不会被公开。 必填项已用*标注