Hi, if I have a page index.htm but want it to be a php file, by default will my server load index.php if index.htm does not exist.
Thanks
just ask. it should be .php or .phtml or something like that. if it is a remote server ask. if it is on your own computer, you just need to adjust some configuration files to load the extension you want.
You need to edit your .htaccess file and add
DirectoryIndex index.php index.php3 index.html index.html
This will check for index.php first then index.php3 all in a row. You can add an unlimited amount of files to be searched for.