Where in root .htaccess does this line go? I put at the beginning, but not sure if that's right.
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !/ow_cron/run.php
RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/index.php
RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
Also, I want to be sure I understand...when user closes browser without logging out, does cron job log them out automatically?
Thanks!