The following steps summarize how to verify the configuration. Use the steps only for reference.
Follow these steps:
LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/libproxy.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule proxy_http_module modules/mod_proxy_http.so AddModule mod_rewrite.c AddModule mod_proxy.c RewriteLog "/etc/httpd/logs/rewrite_log" RewriteLogLevel 9
<Location /application_root_dir>
RewriteEngine On
RewriteCond %{THE_REQUEST} \.jsp
RewriteRule ^(.+) http://somehost.com:90%{REQUEST_URI} [P]
RewriteCond %{THE_REQUEST} Example
RewriteRule ^(.+) htt://somehost.com:90%{REQUEST_URI} [P]
</Location>
| Copyright © 2012 CA. All rights reserved. |
|