Greetings,
I'm trying to setup invoiceplane, but it uses an htaccess file. I've read and watched videos of people importing the htaccess file and it magically works after that, but it doesn't import the file when I do it. It says, "This directive was not converted because it is not supported by IIS: RewriteBase /.?" The htaccess file looks pretty simple and I've seen more complicated ones work fine.
Here's the htaccess file contents:
# Remove index.php
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
Does anyone have any ideas?