I have a website with a index.htm page. I am installing wordpress and I'd like to ask if index.php will supercede index.htm since it i dont want wordpress to showup while I am constructing it. thanks
my index.htm says that the page is under construction. So while contructing the website with joomla im afraid that index.php will supercede. is this correct?
try it out, i doubt anybody will see it in the time it take you to work out stuff. you could aslo try it by creating a subfolder.
You could edit the index.php file and put a condition like if it's not your IP then forward to index.htm instead.
Call your file maintainence.html, upload that, then set this line in your htaccess file: Directory Index maintainence.html Code (markup): Upload that, and you're done.
^ Sohan is right, change index.htm to index.html Synchronium, the correct DirectoryIndex directive should be: DirectoryIndex maintainence.html Code (markup):
It depends on what order it is in the server config. As said earlier you can override that with a .htaccess file
Windows won't let you create a .htaccess file (since it has no name before the extension) so open command prompt ( run --> 'cmd' ), type in: cd c:\website\path\ Code (markup): to get to the directory your website is followed by: echo DirectoryIndex maintainence.html > .htaccess Code (markup): then find the newly created htaccess file in your website directory and upload it. If you already have one, open it in notepad.