1

メールで始まる Web サーバー サイトのすべてのサブドメインをhttps://anotherSub.domain.comにリダイレクトしたい

どうすればできますか?

Put this at the top of the yours default apache config file
RewriteEngine on  
RewriteCond %{HTTP_HOST} ^SUBDOMAIN.* 
RewriteRule ^(.*) YOUR LINK (ex. http://www.google.it)
4

1 に答える 1