Hello Hugo, I wonder if you could please help me translate these re-write rules into toolkits. I am struggling to get the ZoneMinder API to work. The API functions are the last hurdle in an error free running ZoneMinder CCTV system using Hiawatha instead of Apache. These are the rules in 2 .htaccess files:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
RewriteBase /zm/api
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
RewriteBase /zm/api
</IfModule>
any help will be greatly appreciated. I am hoping to solve the API rewrite problems for zoneminder running under Hiawatha!