My Wordpress was working normally, I was editing the permissions for security reasons.
I assigned all folders within my public_html
to 755 and assigns all my files to 644
Well, now only 500 Internal Server ao acessar
I also thought it was my htaccess
Today it looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteCond %{HTTP_REFERER} !^http://MEULINK.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://MEULINK.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://MEULINK.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://MEULINK.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://MEUIP/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://MEUIP$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
#security
<FilesMatch ^wp-config.php$>
Deny from all
</FilesMatch>
Options All –Indexes
Could it be some wrong assignment? Or problem on my host?