Visitor Redirection Via .htaccess ?

I have a real simple model recruitment site that steers the visitor from one page to the next. (page1.htm => page2.htm => page3.htm etc.).

How can I make sure that all visitors start at page1.htm regardless of where they originally enter from?

I’d like to do it via .htaccess. I was thinking a 301 redirect but now I’m thinking that’s wrong.

Re: Visitor Redirection Via .htaccess ?

Personally, I’d do it via Javascript. You could do it by checking the referrer in .htaccess, but it won’t work if the person has privacy software running that strips referrers. With Javascript you can pass a variable from one page to another and check the content of the variable.

Re: Visitor Redirection Via .htaccess ?

Thanks. I’m playing with some javascript now but keep creating endless loops. I’m going to keep searching.