I want to redirect all user page requests to a page on the same domain.

For example, I have an "under construction, BRB" page that I want all users to see when they try to access ANY page on the site.

I tried using this:

Redirect 302 / http://www.domain.com/index2.php

What that does is try to apply the redirect to the index2.php page as well and it gets stuck in a loop where the user then sees this until the browser stops.

http://www.domain.com/index2.phpindex2.phpindex2.phpindex2.php etc., etc,

Any idea on how to write that rule to except that page?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You have to exclude the file you want to redirect to. Here’s an example with mod_rewrite:

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule !^index2\.php$ /index2.php [L,R=302]
</IfModule>
link|improve this answer
1  
I'm probably doing it wrong but my broswer is returning "Too many redirects" errors when I try this. – Tom Apr 13 '09 at 15:45
How would I write this so it wouldn't rewrite the CSS files required to display the page correctly? – Tom Apr 13 '09 at 16:20
No need to specify the 302 return, mod_rewrite will do that by default. – Rob Wells Apr 13 '09 at 16:22
@Tom: Add a RewriteCond directive to explude additional URI paths: RewriteCond %{REQUEST_URI} ^/(css|images|foobar)/`. – Gumbo Apr 13 '09 at 16:32
I think we're getting there but when I add that, the redirecting stops working.... <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} ^/(_assets)/ RewriteRule !^index2\.php$ /index2.php [L,R=302] </IfModule> – Tom Apr 13 '09 at 16:39
show 1 more comment
feedback

You could use mod_rewrite

<IfModule mod_rewrite.c>
RewriteCond {REQUEST_URI} !=/index2.php
RewriteEngine on
RewriteRule ^.*$ /index2.php
# End .HTACCESS
</IfModule>

link|improve this answer
That gives me a 500 internal server error. – Tom Apr 13 '09 at 15:35
sorry, forgot to exclude the file you want to serve. I've updated it. – Eddy Apr 13 '09 at 15:50
Thanks Eddy but I'm still getting an internal server error, any ideas as to why? – Tom Apr 13 '09 at 15:52
Hrm, could you add some logging eg) RewriteLogLevel 9 /path/to/logs – Eddy Apr 13 '09 at 15:59
feedback

I'd be more inclined to use the slightly different

Options +FollowSymLinks 
<IfModule mod_rewrite.c>
    RewriteEngine on 
    RewriteRule ^/.*$ /index2.php [R=307,L]
</IfModule>

This will let you return a moved temporarily status for the redirect.

Omitting this set of flags means that mod_rewrite will return a 302 Found status by default.

HTH

cheers,

link|improve this answer
Trying that rule I get, "Too many redirects occurred" in my browser... – Tom Apr 13 '09 at 15:43
What is in your index2.php? – Rob Wells Apr 13 '09 at 15:52
And did you see my edit adding the / to the rewrite regexp? – Rob Wells Apr 13 '09 at 15:53
a few images and includes of header and footer information, could that be causing it? Meaning it's trying to redirect the include files? – Tom Apr 13 '09 at 15:54
Oh and an fyi, I've tried the code above and now it doesn't do any redirecting at all... – Tom Apr 13 '09 at 15:55
feedback

Your Answer

 
or
required, but never shown

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