Apache Rewrite Rules not working

#1
Hi,
I'm trying to install XBackBone and it has the following rewrite rules in its .htaccess:
Apache config:
Options -Indexes
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(app|bin|bootstrap|resources|storage|vendor|logs|CHANGELOG.md)(/.*|)$ - [NC,F]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
How can I convert them to OLS rules? At the moment the app redirects to /home but it's showing a 404 error.
Thanks
 
Top