• Hi,

    On my server (home.pl) captcha images could not be opened due to 403 error. I’ve done a short research and I have found the solution.

    When i changed .htaccess from

    Order deny, allow
    Deny from all
    <Files ~ "^[0-9A-Za-z]+\.(jpeg|jpg|gif|png)$">
        Allow from all
    </Files>

    to

    Order deny, allow
    Deny from all
    <FilesMatch "^[0-9A-Za-z]+\.(jpeg|jpg|gif|png)$">
        Allow from all
    </FilesMatch>

    and images works good now, as i read in web, <FilesMatch> is better than <Files ~>

    Could you update your plugin with that changes? 403 error is popular in your plugin :/

    Greetings 🙂

    https://ww.wp.xz.cn/plugins/really-simple-captcha/

The topic ‘htaccess not work on my server – found solution’ is closed to new replies.