Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress security

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #28670
    designedbyme
    Member

    Hello!!

    I’m trying to secure WordPress with advice given by Digging into WordPress (which is brilliant) but everytime I try to add

    Code:
    # SECURE WP-CONFIG.PHP
    Order Deny,Allow Deny from all Allow from 000.000.000

    to my .htaccess file I get a 500 error where my site should be!!

    At the moment the following is in my .htaccess file

    Code:

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

    # BEGIN WordPress

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

    # END WordPress

    How do I secure my site??? :shock:

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.