Hi muggy8x1, when you go to your file manager in cpanel, make sure you click 'Show hidden files' and then go the folder that you want and check if your .htaccess file is there, if not try to make it again. And I added something to what Dead-i told you to put in your .htaccess. Instead of hiding it from everyone including yourself, use this.
Code:
order deny,allow
deny from all
allow from 123.123.123.123
Replace the 123.123.123.123 with your ip address.
You can get your ip by making a file on filemanager named ip.php, then paste the following code:
PHP:
<?php
$ip = getenv(REMOTE_ADDR);
echo "Your IP Address is ".$ip;
?>
Then, go to ip.php on your domain on a browser. Then, copy and paste the ip address that you get into your .htaccess file.
Thank You