CodeIgniter Forums
index.html missing in system directory - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: index.html missing in system directory (/showthread.php?tid=13316)



index.html missing in system directory - El Forum - 11-18-2008

[eluser]Alur[/eluser]
Hi!

I'm new to CodeIgniter, so this might be a silly question. I've just realized that the index.html file in the subdirectories (to prevent directory access) is missing in the system directory. Is there any reason why it should be like this?

Thanks in advance!

Alur


index.html missing in system directory - El Forum - 11-18-2008

[eluser]bgougent[/eluser]
I see no reason why not, putting it there (like copy from an other folder) does not harm the functionality.
But it is always good the rename your system folder and adjust your basic index.php file in your root.
Code:
$system_folder = "system";
to
Code:
$system_folder = "new_folder_name";



index.html missing in system directory - El Forum - 11-18-2008

[eluser]Alur[/eluser]
Thank you! That is a much better solution. I didn't know you could that. Thanks again for the advice.

Alur