我搜索并搜索无济于事。如果已经有答案,请告诉我。
但我正在尝试将通配符子域重定向到具有GET请求的特定文件。同时需要重定向到https和非WWW
例如:
http://user1.example.com -> https://example.com/index.php?user=user1
https://user2.example.com -> http://example.com/index.php?user=user2
任何帮助都将永远感激,并提前感谢你!
答案 0 :(得分:0)
尝试使用以下规则,
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)\.example.com
RewriteRule ^ %{REQUEST_SCHEME}://example.com/index.php?user=%1 [R=302,END]
我有点不确定请求方案是否可以在较低版本的apache中使用,让我知道结果。