1
My Wordpress was working normally, I was editing the permissions for security reasons.
Assigned to all folders inside mine public_html
to 755 and assigns to all my files to 644
Well, now just from 500 Internal Server ao acessar
I thought it was mine too htaccess
Today he’s 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 be some misconception? Or problem on my host?