Status
Not open for further replies.

av0id

Member
17
2012
7
0
hey guys need some help.
Trying to temporary redirect my website from the main page to the forum as we fix it up.

Whenever i place the 302 redirect code into my .htaccess file it will redirect but add /forum/forum/forum many times.

This is what's in my .htaccess file

Code:
Redirect 301 /wordpress/ http://mysite.com/
Redirect 302 / http://mysite.com/forum

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
</IfModule>

any help would be great.
 
2 comments
Status
Not open for further replies.
Back
Top