我想知道如何重定向HTTP和&的子域名? HTTPS到特定网址。
我希望它来自:
http://test.example.com to https://www.example.com/test
和
https://test.example/com to https://www.example.com/test
答案 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