January 20, 2010
How to delay a header redirect with PHP
Category: Uncategorized, khadlock at 12:27 pm
Sometimes you need to show some page content before redirecting a page, like a successful login message, etc. Here's an easy way to delay a header redirect with PHP without using a Meta tag to refresh the page.
header("Refresh: 1; URL=http://www.studiosedition.com");
January 6, 2010
Change directory index using .htaccess
Category: Uncategorized, Tags: htaccess, khadlock at 1:50 pm
Here's a quick way to change your directory index using htaccess:
DirectoryIndex index.html index.php
