htaccess通配符子域重定向与https非www
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htaccess通配符子域重定向与https非www相关的知识,希望对你有一定的参考价值。
我搜索并搜索无济于事。如果已经有答案,请告诉我。
但我试图通过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中工作让我知道结果。
以上是关于htaccess通配符子域重定向与https非www的主要内容,如果未能解决你的问题,请参考以下文章
.htaccess:将主域重定向到https:// www,子域重定向到https://(不带www)