How to change default loding page?

Status
Not open for further replies.

JoshuaLuke

Posting Freak
Jan 29, 2012
529
51
Hey,

Instead of the site defaultly loading how do I make it load
Mabye .htaccess?

Thanks
Josh
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Put something like this in index.php

PHP:
<?php
header( "Location: vote.php" );
?>

Or put this in your <head> tags:
PHP:
<meta http-equiv="refresh" content="0;url=vote.php" />
 

JoshuaLuke

Posting Freak
Jan 29, 2012
529
51
Put something like this in index.php

PHP:
<?php
header( "Location: vote.php" );
?>

Or put this in your <head> tags:
PHP:
<meta http-equiv="refresh" content="0;url=vote.php" />

What I mean is it will vote, and then load the index normally
 
Status
Not open for further replies.

Users who are viewing this thread

Top