When someone types in the root url of my website index.html is displayed, I would like index.php to displayed. Could someone tell me how I can do this? Thanks a lot for your help, Westen
Or rename your html file, otherwise if you need to keep it for some reason, do a meta refresh redirect
Add to your .htaccess file the following line DirectoryIndex index.php index.html index.shtml Code (markup): Your server will read index.php, if not available the following extension and so on. ·