I basically have a standard .htaccess file in order to do URL-Rewriting:
RewriteEngine on
RewriteRule ^somestring\/(.+)$ somestring.php?value=$1 [L]
But as the somestring.php file exist, it redirects automatically before doing my rewriting. For exemple if I try to display the $_SERVER['PHP_SELF'] when accessing the file via /something/test, I get /something.php/test, so I don't have the $_GET values.
Is there any way to prevent this automatic redirection, or do I have to use $_SERVER['PATH_INFO'] and treat data by myself in php ?
files/somestring.php? – Bali Balo Nov 30 '12 at 18:12