View Single Post
Old 10-14-2004, 07:48 PM   #2 (permalink)
seonewbee
Inactive
 
seonewbee's Avatar
 
Join Date: 05-12-04
Posts: 520
iTrader: 0 / 0%
Latest Blog:
None

seonewbee is just really niceseonewbee is just really niceseonewbee is just really niceseonewbee is just really niceseonewbee is just really niceseonewbee is just really niceseonewbee is just really niceseonewbee is just really nice
You can use .htaccess to set the default page

Code:
DirectoryIndex index.php
You can also use .htaccess to redirect all your other pages (index.htm, index.html) to index.php

Code:
Redirect 301 index.htm http://www.yourdomain.com/index.php
You do mod rewrite in your .htaccess file. To do mod rewrite you will ne something like this

Code:
RewriteEngine On RewriteRule ^index.html$ /index.php [R=301]
Hope that this points you in the right direction.
seonewbee is offline   Reply With Quote