0
我想知道如何將HTTP & HTTPS的子域重定向到特定的URL。使用Apache虛擬主機將子域重定向到HTTPS WWW URL
我希望它從去:
http://test.example.com to https://www.example.com/test
和
https://test.example/com to https://www.example.com/test
我想知道如何將HTTP & HTTPS的子域重定向到特定的URL。使用Apache虛擬主機將子域重定向到HTTPS WWW URL
我希望它從去:
http://test.example.com to https://www.example.com/test
和
https://test.example/com to https://www.example.com/test
希望這會幫助你,因爲它是爲我工作。
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