将https://subdomain.example.com重定向到https://example.com/subdomain

时间:2012-10-15 13:34:13

标签: apache

我试图重定向流量,并且我已设法使其在HTTP上运行:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^wiki\.example\.com
RewriteCond %{HTTPS} !=on
RewriteRule (.*) http://example.com/wiki/$1 [L]
RewriteCond %{HTTP_HOST} ^db\.example\.com
RewriteCond %{HTTPS} !=on
RewriteRule (.*) http://example.com/db/$1 [L]

到目前为止,我还没有与HTTPS合作。有人有任何想法吗?

2 个答案:

答案 0 :(得分:2)

您需要复制HTTPS的代码,但将RewriteCond设置为%{HTTPS} =on以进行SSL重定向。我还会设置RewriteBase选项以及在重定向上设置R=301标志。此外,通过使用RewriteCond for wiki / db -

,可以使用%N的后向引用来简化一些事情。
RewriteEngine On
RewriteBase /

# HTTP Redirects
RewriteCond %{HTTP_HOST} ^(wiki|db)\.example\.com
RewriteCond %{HTTPS} !=on
RewriteRule (.*) http://example.com/%1/$1 [R=301,L]

# HTTPS Redirects
RewriteCond %{HTTP_HOST} ^(wiki|db)\.example\.com
RewriteCond %{HTTPS} =on
RewriteRule (.*) https://example.com/%1/$1 [R=301,L]

如果您的域名将来可能会更改,并且您希望确保根据匹配重定向,则还可以在RewriteCond -

中使用更多反向引用
# HTTPS Redirects
RewriteCond %{HTTP_HOST} ^(wiki|db)\.(example\.com)
RewriteCond %{HTTPS} =on
RewriteRule (.*) https://%2/%1/$1 [R=301,L]

答案 1 :(得分:0)

如果您希望重定向发生在HTTP和HTTPS上,只需取出当HTTPS环境变量设置为on时停止重写的重写条件。