htaccess通配符子域重定向与https非www

问题描述 投票:0回答:1

我搜索并搜索无济于事。如果已经有答案,请告诉我。

但我试图通过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

任何帮助将永远感激,并提前感谢您!

php .htaccess https subdomain wildcard
1个回答
0
投票

尝试以下规则,

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)\.example.com
RewriteRule ^ %{REQUEST_SCHEME}://example.com/index.php?user=%1 [R=302,END]

我有点不确定请求方案将在较低版本的apache中工作让我知道结果。

© www.soinside.com 2019 - 2024. All rights reserved.