I worked with simple rules in the htaccess file for quite some time and I've never had any kind of problem.
But all the previous time I used in the rewriting rules different variables (both numeric and string) and the file extension (.php) at the end of the address.
This time I'm trying to rewrite using the form site.com/new-name-of-the-page/
And I realized that the something happen with the js and css files. I'm not sure how to explain but the js files don't work anymore after I upload the htaccess file.
RewriteEngine On
RewriteRule ^events-in-([^/]+)/$ levelone.php?lv1=$1&%{QUERY_STRING} [L]
RewriteRule ^([^/]+)/([^/]+)/$ leveltwo.php?lv1=$1&org=$2&%{QUERY_STRING} [L]
Do I have to insert as variable the numeric ID and the extension .php?