vote up 0 vote down star

It's been a while since I've messed with .htaccess and I can't seem to get this quite right. I have a site, say example.com, where I want example.com/* to redirect to example.com/collector.html except for URLs under the subdirectory example.com/special, which I want to continue working.

For example:

  • example.com/page.html should redirect to example.com/collector.html
  • example.com/foo/bar should redirect to example.com/collector.html
  • example.com/special/page.html should not redirect

I would have thought that something like

RedirectMatch 302 ^/[^(special)]/.* /collector.html
RedirectMatch 302 ^/[^(collector.html)/]* /collector.html

would do the trick, but it doesn't seem to work the way I want it to.

flag

75% accept rate

3 Answers

vote up 1 vote down check

Maybe this? (needs mod_rewrite)

RewriteEngine On
RewriteRule !^(special(/.*)?|collector\.html)$ collector.html [R,L]
link|flag
I thought about this but i think he wants to explicitly redirect the user with a 302 code... – bgy May 29 at 14:03
1  
That's what the [R] flag does – Steef May 29 at 14:16
1  
Had to make a small modification, changed "special/" to "special/?" so that "example.com/special" doesn't redirect, but other than that this worked, thanks! – Tyler McHenry May 29 at 14:56
1  
@BastardSaint: thanks didn't know about this ! – bgy May 29 at 16:55
1  
@Tyler: You might want to make the regex part "!^(special(/.*)?|collector\.html)$" then, because your version will not redirect on URLs like "example.com/specialpage.html";. I'll edit my answer. – Steef May 29 at 19:30
vote up 0 vote down

Maybe...?

RewriteEngine on
RewriteRule ^(?!special) collector.html [R,NC]
link|flag
Never mind... I see that the example above is the solution. – Alex Burr May 29 at 18:04
vote up 0 vote down

Try this:

RedirectMatch 302 /\/[^(special)]\/.+/ /collector.html 
RedirectMatch 302 /\/[^(collector\.html)]/ /collector.html
link|flag
This works to get all subdirectories to go to the collector, but doesn't work to redirect files in the root, e.g. example.com/page.html – Tyler McHenry May 29 at 13:40
What's happen ? Does the page is retrieved correctly without any redirect ? – bgy May 29 at 14:04
Try this on the same line : RedirectMatch 302 /\/[^(special\/)|(collector\.html)].*/ /collector.html – bgy May 29 at 14:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.