【发布时间】:2014-11-06 08:35:00
【问题描述】:
我需要通过http and https 和其他网址(如/aapp, /bapp, /capp)和其他网址通过https 路由特定的网址,/gapp。我已成功将所有内容路由到 https,但无法将 /gapp 路由到 http。以下是我的配置:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} =on
RewriteRule ^(gapp)$ http://%{SERVER_NAME}%{REQUEST_URI} [L,R]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
</IfModule>
# Should mod_jk send SSL information to Tomcat (default is On)
JkExtractSSL On
# What is the indicator for SSL (default is HTTPS)
JkHTTPSIndicator HTTPS
# What is the indicator for SSL session (default is SSL_SESSION_ID)
JkSESSIONIndicator SSL_SESSION_ID
# What is the indicator for client SSL cipher suit (default is SSL_CIPHER)
JkCIPHERIndicator SSL_CIPHER
# What is the indicator for the client SSL certificated (default is SSL_CLIENT_CERT)
JkCERTSIndicator SSL_CLIENT_CERT
# Send everything for context /examples to worker named worker1 (ajp13)
# JkOptions indicates to send SSK KEY SIZE
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
# JkRequestLogFormat
JkRequestLogFormat "%w %V %T"
JkMount /aapp aapp
JkMount /bapp/* bapp
JkMount /capp capp
JkMount /gapp gapp
JkMount /gapp/* gapp
简单来说,我希望能够做到这些:
http://example.com/gapp/
https://example.com/gapp/
我该如何做到这一点?
【问题讨论】:
标签: apache http https webserver httpd.conf