Welcome Guest [Log In] [Register]
Viewing Single Post From: Firefox Keywords
Reid.
C'est un piège!
[ *  *  * ]
If it's a .php file, you can also redirect it from there using the header...
Code:
 
<?php
header('Location: http://www.google.com/');
?>
Of course, I may have done something wrong there; I'm not very good with PHP.

You could also use javascript:
Code:
 
<script type='text/javascript'>
// <![CDATA[
location.href = "http://www.google.com/";
// ]]>
</script>
Past that, you could use the <meta> tag Dale posted.. I don't know offhand of any other ways, though.
Offline Profile Quote Post
Firefox Keywords · Technology Chat