Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
Or maybe the best solution is to move my real file in some random dir like files/somestring.php ? – Bali Balo Nov 30 '12 at 18:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.