Redirection Problem

tried the redirect or renaming your page?

A redirect will work if you have php enabled, renaming to a recognised DirectoryIndex will also work, contact your host /system administrator and confirm that index.htm / index.html are all listed against the DirectoryIndex in the servers httpd.conf.

Chris
 
or if you have curl enabled, have your tried this?
PHP:
<?php include "http://domain.com/mypage.htm"; ?>
 
Back
Top