Laravel htaccess settings and captcha plugin

the directory structure of my web site is this

  • www
    – phplist/lists
    – any_other_directory
    – any_other_file

this htaccess http://www.francescoparisionline.it/htaccess.txt is the standard htaccess of phplist, secureimage was present at the same level of phplist. For security reasons the rules contained in that htaccess limit the possibility to directly access any php file excepting for index.php | dl.php | ut.php | lt.php | download.php | connector.php .

Some few minutes ago, I tried to move the secureimage folder in another position:

  • www
    – phplist/lists
    – secureimage
    – any_other_directory
    – any_other_file

in this moment I can access securimage_show.php https://demetrionaccari.it/securimage/secureimage_show.php , I also tried to write a simple test script here demetrionaccari.it/securimage/test.php

`

<?php require_once 'securimage.php'; echo Securimage::getCaptchaHtml(); ?>
`

Unfortunately when I call secureimage show.php with a querystring I get a 404 error demetrionaccari.it/securimage/securimage_show.php?f87b28a9ff79e5a06a57a59bdd90efff

I don’t know, maybe it’s a bug