Help with redirect

Can you do that with the default? I had to add a domain in order to get a redirection.
 
Create a index.html page with these contents

Code:
<html>
<META HTTP-EQUIV="Refresh" content= "0;URL=REPLACE WITH YOUR URL">
</html>
 
@uraF0x said:
Create a index.html page with these contents

Code:
<html>
<META HTTP-EQUIV="Refresh" content= "0;URL=REPLACE WITH YOUR URL">
</html>
Yes, but editing the .htaccess won't have to make it refresh.
 
Can be done with Php as well:

Code:
<?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?>
 
Back
Top Bottom