Hi, within Mod_Rewrite, does it matter if you include an underscore or not? What one do you prefer? Example: RewriteEngine On Rewrite_Engine On Is it purely personal choice or should one be used instead of the other?
I Think it doesnt matter though never tried it I Always use RewriteEngine On coz that is now standardize used in most of the scripts
I Always use "RewriteEngine On" too, and "RewriteRule", FilesMatch, SetEnvIf ... So, I've never used directives with underscores.
I didn't even know Apache would interpret directives with underscores in them, let alone have I used them.
As Linux is case sensitive, so are configurations/directives etc of various daemons. The Apache directive to enable/disable mod_rewrite is RewriteEngine so you must use RewriteEngine On/Off. Anything else will result in a 500 Internal Server Error as Apache would not understand the directive you have put inside the .htaccess.