How to stop a 500 error on the WordPress theme folder
Adding this code to the top of the index.php file in your theme will return a 403 if the theme directory is accessed directly: if ( ! defined( ‘ABSPATH’ ) ) { header( ‘HTTP/1.0 403 Forbidden’ ); die(); } However, you never see that code in any theme’s index.php file, because it’s unnecessary. I only … Read more