PDA

View Full Version : redirect index page


rcjay2
10-26-2006, 11:27 AM
All,

I have everything installed fine. It all works. I have a domain setup as

www.jeezopeezo.com

but I have everything (pixelpost) installed in

http://www.jeezopeezo.com/pixelpost/index.php.

If you go to the main page http://www.jeezopeezo.com/ you'll get the default apache page, which is good but not what I want.

When someone goes to http://www.jeezopeezo.com/ I want them to get the pixelpost index page not the apache page.

How do I switch them?

Windows 2003
Pixelpost 1.5
Apache
Mysql 5

Thanks
Rob

codepoit
10-26-2006, 12:28 PM
You can either have your host redirect requests for jeezopeezo.com to jeezopeezo.com/pixelpost, or, you can move your pixelpost install into the root of your domain.

me!
10-26-2006, 12:34 PM
In the mean time you could try having a rediret page. I did this to change my index.html which was in yahoo and friends book mark to go to index.php.

on the old page do this
<html>

<head>
<title>YOUR SITE TITLE</title>

<!-- Send users to the new location. -->
<TITLE>redirect</TITLE>
<META HTTP-EQUIV="refresh"
CONTENT="10;URL=http://your site/sub directory/index.php">
</HEAD>
<BODY>
This page has moved. You will be
automatically redirected
to its new location in 10 seconds.
If you aren't forwarded
to the new page,

<a href="http://your site/ sub directory/index.php">click here</a>.


</BODY>
</HTML>



Good luck