'ello all.
I have been using the following .htaccess to remedy mod_rewrite issues on servers running php via cgi.
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.php[/]?(.*) /$1.php?vars=$2
Basically my URLs look like website.com/page.php/var1/var2
But now, I've come across two servers that won't accept it.
The first displays the dreaded No Input File, the other just displays a blank page.
I'd be happy to supply any additional info and any help would rock.
TIA!