SOLVED kind off...... the issue I have been having this whole time is because of the .htaccess file!! I could have sworn that was the first thing I got rid of, but I was wrong. Ok. Now. The issue I have is how am I supposed to set the .htaccess file the right way? Here is what I have:
For wp-includes:
Order Allow,Deny
Deny from all
<Files ~ ".(css|jpe?g|png|gif|js)$">
<Files ~ ".(/themes/)$">
Allow from all
</Files>
For wp-content:
Order Allow,Deny
Deny from all
<Files ~ "\.(css|jpe?g|png|gif|js)$">
Allow from all
</Files>
<Files ~ ".(/themes/)$">
Allow from all
</Files>
I found out that if I delete these from my server, everything tends to work fine. However, as a security precaution, how do I edit this the right way.