quote:
Originally posted by Sunshine
Every page has a header right? All you have to do is change the metatag to hold the correct redirection url...
1. http://mno.def.com/page.html he gets redirected to http://abc.def.com/page.html
on that page you use the url http://abc.def.com/page.html as redirection url
2. http://mno.def.com/home.php he gets redirected to http://abc.def.com/home.php
Here you use http://abc.def.com/home.php as redirection url.
Understand?
I can't make each and every possibility
![[Image: msn_tongue.gif]](http://shoutbox.menthix.net/images/smilies/msn_tongue.gif)
.
quote:
Originally posted by alexp2_ad
Create a file called .htaccess and in it write:
code:
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^(.*)$ http://abc.def.com/$1 [r=301,nc]
Assuming it's an apache server, that'll work.
Edit: Oh, and put it in the place you're redirecting from. ![[Image: msn_wink.gif]](http://shoutbox.menthix.net/images/smilies/msn_wink.gif)
Where to put the place i'm redirecting from?