我搜索并搜索无济于事。如果已经有答案,请告诉我。
但我试图通过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
任何帮助将永远感激,并提前感谢您!
尝试以下规则,
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)\.example.com
RewriteRule ^ %{REQUEST_SCHEME}://example.com/index.php?user=%1 [R=302,END]
我有点不确定请求方案将在较低版本的apache中工作让我知道结果。