I am trying to redirect one url to another and it keeps defaulting back to the original URL and not redirecting to the new one. Here is an example of my entry in the httpd.conf file. Any ideas on why the redirect isn't working for me or any other ideas to try? I am using IBM HTTP server.
<VirtualHost test.website.com:443>
SSLEnable
SSLClientAuth 0
Keyfile /opt/IBMIHS/ssl/keyfiles/testanew/testa.kdb
ServerName test.website.com
Redirect /webapp/wcs/stores/servlet/testview?catalogId=106&storeId=107 #Turn off HTTP TRACE
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
</IfModule>
SSLCipherSpec 3A
SSLCipherSpec 34
SSLCipherSpec 35
</VirtualHost>
<VirtualHost test.website.com:443>
SSLEnable
SSLClientAuth 0
Keyfile /opt/IBMIHS/ssl/keyfiles/testanew/testa.kdb
ServerName test.website.com
Redirect /webapp/wcs/stores/servlet/testview?catalogId=106&storeId=107 #Turn off HTTP TRACE
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
</IfModule>
SSLCipherSpec 3A
SSLCipherSpec 34
SSLCipherSpec 35
</VirtualHost>