▲ | elric 2 days ago | |
Interesting. I've never used rewrite rules conditionally, and if a rewritten request is your only defense you've probably got bigger problems. | ||
▲ | dspillett 4 hours ago | parent | next [-] | |
That's what I mean by "not a good way" and "at least not on its own". It _can_ be a good optimisation to make some easy decisions quickly on the web server before pushing anything less definite to your more expensive logic processing, if well implemented. If badly implemented it leads to security holes and actually worse performance. | ||
▲ | mrspuratic 2 days ago | parent | prev [-] | |
For better or worse, mod_rewrite's flexibility meant it got used to add logic, primitive flow control and conditional behaviours. You don't actually need to rewrite a URL path. More recently, "Require expr" can do some of this. |