vBET cuts index.php from URL - that is why you have this issue. For quick fix please:
1. Edit file /includes/vbenterprisetranslator_functions_url.php
2. Find:
PHP Code:
if (false !== strpos($address, 'index.php') && false === strpos($address, '/archive/')) {
$address = str_replace('index.php','',$address);
}
2. Replace by:
PHP Code:
if (false !== strpos($address, '/index.php') && false === strpos($address, '/archive/')) {
$address = str_replace('/index.php','/',$address);
}
Please confirm does it help. We will include it in next release so you will be calm about it during updates