Ok, I've been reading how to get the .htaccess for domain change!
However I'm confuse...
The board has been off for about 5 months, so SEO is already f***up
I still have internal links that point to the old domain(and folder)
The htaccess should change:
to:
See, new domain is .NET and new folder is /FORUM
If this htaccess changes the domain:
how can i get this to change folder too??? thats the question
However I'm confuse...
The board has been off for about 5 months, so SEO is already f***up

I still have internal links that point to the old domain(and folder)
The htaccess should change:
Code:
OldDomain.com/foro
Code:
NewDomain.net/forum
If this htaccess changes the domain:
Code:
Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^(.*)olddomain.com [NC] RewriteRule ^(.*)$ http://newdomain.net/$1 [R=301,L]

Comment