Forum Moderators: open

Message Too Old, No Replies

Redirecting from page 2 page

Help

         

xcandyman

1:29 pm on Apr 10, 2003 (gmt 0)

10+ Year Member



Hi all

I need to redirect users automatically from one file to another when they type in the domain address "widgets.com" to widgets.com/cgi-bin/shineywidgets.cgi

Note: I'm not trying to trick the user in any way.

What is the best way to do this user wise and google wise?

Thanks

Steve

killroy

1:43 pm on Apr 10, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Transparent internal redirect via mod_rewrite on Apache:

RewriteEngine on
RewriteRule ^/?(.*)$ /cgi-bin/sript.cgi?$1 [L]

SN