Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

redirect one url to another problem

Status
Not open for further replies.

mmcds

MIS
Jul 5, 2007
28
US
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>
 
nevermind. I figured it out using the RewriteRule.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top