In my Ghost installation on server I want to access a few folders and subfolders, but the main ghost setup's htaccess prevents that. I don't understand htaccess at all. What rewrite rules should be used to allow a few subfolders.
example.nl should be accessible along with all permalinks. Then a particular folder with a few subfolders need to open when path is requested from browser. That's not happening right now. I will need to load index.html files with all css and js etc.
Example: example.nl/subfolder/sub1/index.html
Options +FollowSymLinks -Indexes
IndexIgnore *
DirectoryIndex
<IfModule mod_rewrite.c>
RewriteEngine on
# Simple URL redirect:
RewriteRule ^(.*)$ http://example.nl:62254/$1 [P]
</IfModule>