by ZachSaw on September 5th, 2008, 6:21 pm
Ah, you mean URL rewrite.
That's a VERY specific functionality that is implemented in Apache via module and IIS via ISAPI (plugin).
What I can do is, I'll implement a plugin architecture of some sort in QuickPHP, exposing some its client request info such as URL path. Within the plugin, you can change the path to anything you wish - you could even implement the same functionality you get with mod_rewrite. Again, this will make QuickPHP almost like a clone of Apache. If you need all these features, it'll be worth your time setting up Apache.
I suppose I could expose the client request info entirely to the plugin, and you or anyone could write the plugin in PHP to manipulate the info before passing it back to QuickPHP. In which case, a QuickPHP.ini file would probably be required to get it to use the plugins and to specify in which order each plugin is executed.
How does that sound?