Quote:
Originally Posted by hymoo
Hi,
I have a question. We are developing our forum but we want to redirect all visitors
to a certain page until we launch our site.
Oke what we want is this:
When someone comes to www.site.com he has to be redirected to www.site.com/blabla/
but the normal admins should be able to access the normal site.
We dont wanna do it through ip adresses since one of us has dynamic ips
We also have vbseo installed. So we dont want anyone to see any of our sites pages only
the redirectionpage.
Can you tell me how we can manage this since we have something up and running now
but it doesnt work flawlessly.
Please help us!
|
How about this
Code:
<if condition="$bbuserinfo['usergroupid'] == X">
<meta HTTP-EQUIV="REFRESH" content="0; url=www.site.com/blabla">
</if>
Relace X with the number of the Usergroup ID that you want to redirect, and then place it at the top of your header, Then when a member goes to your site that falls into that usergroup, they will be redirected automatically
Alot easier than .htaccess editing
Hope that helps