Click to See Complete Forum and Search --> : .htaccess Redirect


saturngod
10-04-2008, 12:08 PM
I written .htaccess file looking like that

RewriteEngine on
RewriteBase /

RewriteRule (.*) http://www.mysteryzillion.org/$1


but It can't be redirect
www.mysteryzillion.com/project/webtext

I want to redirect to .org

www.mysteryzillion.org/project/webtext

Now I am ok only www.mysteryzillion.com to www.mysteryzillion.org/

I also want to redirect to
www.mysteryzillion.com/* to www.mysteryzillion.org/*

opifex
10-04-2008, 02:06 PM
not really sure that i'm following you, but

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^mysteryzillion\.com
RewriteRule (.*) http://mysteryzillion.org/$1 [R=301,L]

will redirect the mysteryzillion.com files to the same file name on the mysteryzillion.org site