has anybody any suggestions for how to accomplish the following in an Apache with mod_php and mod_rewrite?
- Receive an incoming HTTP request
- Forward the request to a PHP script, say test.php
- Have the logic in test.php do a calculation resulting in e.g. a value between 1 and 10.
- Use the value (1-10) in a mod_rewrite rule to control what resource is (finally) served back to the end user
Note: it is possible to do this using an extra roundtrip to the browser, passing the calculated value as a parameter in a redirect response from the PHP script. I need this to work in a single roundtrip however.
Thanks in advance