How can I use mod_rewrite to remove everything after the ? (question mark) in a URL?
For instance: http:// 127.0.0.1/ALL_FILES.php?test=1 after mod_rewrite: http:// 127.0.0.1/ALL_FILES.php
For php this means that the $_GET super global will always be empty.
Thank you.