My framework is entirely dependant on mod_rewrite to be enabled on a server for routing purposes. Within my .htaccess file I check if mod_rewrite.c is enabled and do my rewrite rules within it. However, should mod_rewrite not be turned on, my application essentially would stop working as I do not want to do the http://www.domain.com/index.php/... url setup to ensure all requests still filter through index.php.
Is there a failsafe for me to direct all requests to say a internal 500 or possibly some error page (if I can define it customly that would be great) if mod_rewrite is turned off?