• Hi! I need help! Someone it’s crashing my server using a lot of requests to a file that dont exist but i have permalinks activated and because that every request goes to a 404 error page on WordPress. I try to deny acess to that file using .htacess:

    <Files XXXX.php>
    order deny,allow
    deny from all
    </Files>

    But dont work beacuse after i have this:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Can somenone help me please?

  • The topic ‘DDOS on my server using WordPress Permalinks’ is closed to new replies.