Quote From : mscheyndel June 25, 2024, 7:55 pm Hi
 
 I'm having an issue I'm not sure how to easily fix. The website I'm porting into Webuzo requires mod_rewrite. Whenever I drop a .htaccess file into the directory, it causes the server to stop serving all content and produce a 500 error. I've traced the problem to the following rules:
 -------------------------------------------------
 RewriteEngine on
 RewriteCond %{SCRIPT_FILENAME} !-d
 RewriteCond %{SCRIPT_FILENAME} !-f 
 RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?r=$1 [L]
 ---------------------------------------------------
 
 I'm wondering if it's because mod_rewrite is not enabled, but I haven't been able to figure out where to go to check/enable this.
 
 Any assistance would be greatly appreciated!
 
 Martin,
   
 
 If this works, add rules incrementally to identify the problematic directive.
	
	 |