查询ui资产在Apache和Xampp上返回错误403

I'm adding a dynamic behavior on my input control, using:

var options = {
    source: ["ActionScript", "AppleScript"]
};
var selector = '.input_autocomplete_workspacedocuments ';
$(document).on('keydown.autocomplete', selector, function() {
    $(this).autocomplete(options);
});

This code is working ok different enviroments. But now, I'm using xampp and apache and it's returning the error:

jquery.js?rev=2:6700 GET http://localhost/LawFortress/public/assets/themes/default/jquery/smoothness…:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 403 (Forbidden)

I'm not using the default xampp configuration. How I can fix it?

I read a lot of stackoverflow threads saying that I could modify:

httpd.conf and httpd-xampp.conf (grant all), but it's not working

httpd.conf file

<Directory "C:/xampp/htdocs">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
</Directory>