I'm trying to get my .htaccess
file to work with PHPDesktop, but .htaccess
doesn't seem to work. I saw that it's possible to hide specific files in the settings.json
file, but it seems pretty limited. Is there a way to use my .htaccess
file instead of using the settings.json
file? Here's what I use for my .htaccess
file:
RewriteEngine On
RewriteRule ^public/(.+) public/$1 [END] # allow direct access on public folder
RewriteRule ^ index.php [END] # anything else will be directed to index.php