PDA

View Full Version : Redirecting Problems



bcbronz20
07-17-2006, 07:04 PM
Hey,

I need some help with redirects. I want to redirect a subdomain address. From subdomain.mydomain.com to subdomain.mydomain.com/pagetitle.htm

I'm using the redirect service at bluehost control panel, but it's not working. On my computer, the redirect works. However, on all other people's computers the redirect does not work.

Any help would be greatly appreciated.

Aloha,
Bronson

John
07-17-2006, 07:08 PM
Use PHP to do this!

Make a file and name it index.php

Insert this into it:



<?
header("location: http://CHANGE-THIS-TO-YOUR-URL/pagetitle.htm");
?>


The redirect is instant.

:D