Loans - Insurance - Car insurance - Debt Help - eBay

PDA

View Full Version : redirect


onlinestudio
Jan 24th 2008, 6:53 pm
I know I am being lazy by not going out and looking this up but how do you do a redirect for a web page you own to another you own?

ilovelinux
Jan 24th 2008, 7:00 pm
You need to set it up on your hosting panel system. Its something like a domain redirect option.

onlinestudio
Jan 24th 2008, 7:09 pm
sankyu
.

r2ebooks
Jan 24th 2008, 7:25 pm
i want to redirect from http://www.mysite.com to http://www.mysite.com/abcd

i try with control panel but getting error related to .htacess or something like that

how can i redirect as mentioned above?

ilovelinux
Jan 24th 2008, 7:26 pm
Can you pm me the contents of your .htaccess file?

ilovelinux
Jan 24th 2008, 7:27 pm
Oh sorry. So you know nothing about .htaccess? Let me help fixing it for you. PM me the details if you are interested.:)

TechnoGeek
Jan 24th 2008, 8:00 pm
onlinestudio:

You add to your .htaccess file in the root directory a line like this one:

RedirectPermanent /orig-page.html http://www.mydomain.com/redir-page.html

The .htaccess is edited like any other text file, but keep it in Unix format.

angilina
Jan 30th 2008, 4:33 am
I know I am being lazy by not going out and looking this up but how do you do a redirect for a web page you own to another you own?

if u use php then use this code to redirect

<?php
$q="www.urdomain.com";
header("Location: $q") ;
?>

Stomme poes
Jan 30th 2008, 5:24 am
What's wrong with a permanent 301 redirect from the server? As opposed to a scripting redirect.