Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Silence is golden

Does anyone know what an index.php file that contains //silcence is golden is for. I'm not sure if it's there for secuirty or my root directory has been hacked. I'm running WordPress on a local host so I assume that I don't need to worry.

Many thanks!

1 Answer

Its supposed to be there. No worries.

Explore WordPress files like index.php file inside wp-content? What’s inside the file:

[php]

<?php // Silence is golden.

[/php]

An empty file with no code and a single line comment saying β€œSilence is golden”. Whats the reason for this file its security. Its there to keep people from accessing your site directory by browsing to http://yourwebsite/wp-content/

Thanks Dean.