CODE
([^\b(php|gif|jpg)\b]+)$
But that works just like if I would do this:
CODE
([^phgifj]+)$
That code is a part of a larger code that only works partially:
CODE
RewriteEngine on
RewriteRule ([^\b(php|gif|jpg)\b]+)$ item.php?n=$1
RewriteRule ([^\b(php|gif|jpg)\b]+)$ item.php?n=$1
Some strings, such as asd works, but fgh doesn't work.
Any help for either of these problems would be greatly appreciated! As you might see, I'm no master with regex... well, not yet

