使用Apache虚拟主机将子域重定向到HTTPS WWW URL

时间:2017-04-24 05:09:56

标签: php apache redirect

我想知道如何重定向HTTP和&的子域名? HTTPS到特定网址。

我希望它来自:

http://test.example.com to https://www.example.com/test

https://test.example/com to https://www.example.com/test

1 个答案:

答案 0 :(得分:0)

希望这会帮助你,因为它对我有用。

Check this .htaccess code here

RewriteEngine on
RewriteCond %{HTTP_HOST} ([a-z]+)\.(example\.com) #checking domain and subdomain
RewriteRule ^(.*)$ https://www.%2/%1 [R=301,L] #redirecting