1 to 2 of 2
Akelos uses mod rewrite rules defined on the root .htaccess file as
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?ak=$1 [L,QSA]
That means rewrite only if the file or directory does not exist, so double check that the URL you're calling actually points to an existing file.
If you want to disable mod rewrite on a subfolder, you can do so by creating a .htaccess file with
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
1 to 2 of 2