Code: Select all
RewriteRule ^([^"images"|"filemanager"][a-z]+)/?$ /index.php?section=$1The code works properly if I only have [a-z]+ in the parentheses, but when I add those special cases I start having problems; basically the script will work for some strings and not for others.any sequence of letters that is not images or filemanager
I cannot figure out why this is happening or exactly how it's deciding whether or not the string is ok.
Is my way of saying "ignore these names" not formatted properly or possibly there's something else going on?